diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index 4cebab92..00000000 --- a/.appveyor.yml +++ /dev/null @@ -1,22 +0,0 @@ -image: Visual Studio 2022 - -environment: - nodejs_version: "18" - -platform: - - x64 - -install: - - ps: Install-Product node $env:nodejs_version - - node --version - - npm --version - - npm install - -test_script: - - npm run test-windows - -build: off - -branches: - only: - - master diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..d3a8b5b6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,39 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index b2e707a9..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,20 +0,0 @@ -module.exports = { - 'env': { - 'commonjs': true, - 'es2021': true, - }, - 'extends': 'google', - 'overrides': [ - ], - 'parserOptions': { - 'ecmaVersion': 'latest', - 'sourceType': 'module', - }, - 'rules': { - 'indent': ['error', 2, {'SwitchCase': 1}], - 'max-len': [ - 'error', - {'code': 120, 'ignoreComments': true, 'ignoreUrls': true, 'ignoreStrings': true}, - ], - }, -}; diff --git a/.gitattributes b/.gitattributes index 1491f7e1..c2f77113 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,10 +1,13 @@ -/src/** linguist-vendored -/examples/* linguist-vendored +* text=auto eol=lf -src/grammar.json linguist-generated -src/node-types.json linguist-generated +examples/* linguist-vendored + +src/*.json linguist-generated src/parser.c linguist-generated +src/tree_sitter/* linguist-generated -src/grammar.json -diff -src/node-types.json -diff -src/parser.c -diff +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +Package.swift linguist-generated diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..4c39a334 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "ci" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08448036..438cf030 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,30 +1,44 @@ name: CI + on: - workflow_dispatch: - pull_request: push: + branches: [master] + paths: + - grammar.js + - src/** + - test/** + - bindings/** + - binding.gyp + pull_request: + paths: + - grammar.js + - src/** + - test/** + - bindings/** + - binding.gyp + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true jobs: test: - runs-on: ${{ matrix.os }} + name: Test parser + runs-on: ${{matrix.os}} strategy: - fail-fast: true + fail-fast: false matrix: - os: [macos-latest, ubuntu-latest] + os: [ubuntu-latest, windows-latest, macos-14] steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up tree-sitter + uses: tree-sitter/setup-action/cli@v1 + - name: Run tests + uses: tree-sitter/parser-test-action@v2 with: - node-version: 18 - - run: npm install - - run: npm test - - test_windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + test-rust: ${{runner.os == 'Linux'}} + - name: Parse examples + uses: tree-sitter/parse-action@v4 with: - node-version: 18 - - run: npm install - - run: npm run test-windows + files: examples/* diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 103e92ae..96f1a4df 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,18 +2,25 @@ name: Lint on: push: - branches: - - master + branches: [master] + paths: + - grammar.js pull_request: - branches: - - "**" + paths: + - grammar.js jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + cache: npm + node-version: ${{vars.NODE_VERSION}} - name: Install modules - run: npm install + run: npm ci --legacy-peer-deps - name: Run ESLint run: npm run lint diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 00000000..cb7e16b8 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,23 @@ +name: Publish packages + +on: + push: + tags: ["*"] + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true + +jobs: + npm: + uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main + secrets: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + crates: + uses: tree-sitter/workflows/.github/workflows/package-crates.yml@main + secrets: + CARGO_REGISTRY_TOKEN: ${{secrets.CARGO_REGISTRY_TOKEN}} + pypi: + uses: tree-sitter/workflows/.github/workflows/package-pypi.yml@main + secrets: + PYPI_API_TOKEN: ${{secrets.PYPI_API_TOKEN}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 870eb84b..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,103 +0,0 @@ -name: Release - -on: - workflow_run: - workflows: ["CI"] - branches: - - master - types: - - completed - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Get previous commit SHA - id: get_previous_commit - run: | - LATEST_TAG=$(git describe --tags --abbrev=0) - if [[ -z "$LATEST_TAG" ]]; then - echo "No tag found. Failing..." - exit 1 - fi - echo "latest_tag=${LATEST_TAG#v}" >> "$GITHUB_ENV" # Remove 'v' prefix from the tag - - - name: Check if version changed and is greater than the previous - id: version_check - run: | - # Compare the current version with the version from the previous commit - PREVIOUS_NPM_VERSION=${{ env.latest_tag }} - CURRENT_NPM_VERSION=$(jq -r '.version' package.json) - CURRENT_CARGO_VERSION=$(awk -F '"' '/^version/ {print $2}' Cargo.toml) - if [[ "$CURRENT_NPM_VERSION" != "$CURRENT_CARGO_VERSION" ]]; then # Cargo.toml and package.json versions must match - echo "Mismatch: NPM version ($CURRENT_NPM_VERSION) and Cargo.toml version ($CURRENT_CARGO_VERSION)" - echo "version_changed=false" >> "$GITHUB_ENV" - else - if [[ "$PREVIOUS_NPM_VERSION" == "$CURRENT_NPM_VERSION" ]]; then - echo "version_changed=" >> "$GITHUB_ENV" - else - IFS='.' read -ra PREVIOUS_VERSION_PARTS <<< "$PREVIOUS_NPM_VERSION" - IFS='.' read -ra CURRENT_VERSION_PARTS <<< "$CURRENT_NPM_VERSION" - VERSION_CHANGED=false - for i in "${!PREVIOUS_VERSION_PARTS[@]}"; do - if [[ ${CURRENT_VERSION_PARTS[i]} -gt ${PREVIOUS_VERSION_PARTS[i]} ]]; then - VERSION_CHANGED=true - break - elif [[ ${CURRENT_VERSION_PARTS[i]} -lt ${PREVIOUS_VERSION_PARTS[i]} ]]; then - break - fi - done - - echo "version_changed=$VERSION_CHANGED" >> "$GITHUB_ENV" - echo "current_version=${CURRENT_NPM_VERSION}" >> "$GITHUB_ENV" - fi - fi - - - name: Display result - run: | - echo "Version bump detected: ${{ env.version_changed }}" - - - name: Fail if version is lower - if: env.version_changed == 'false' - run: exit 1 - - - name: Setup Node - if: env.version_changed == 'true' - uses: actions/setup-node@v4 - with: - node-version: 18 - registry-url: "https://registry.npmjs.org" - - name: Publish to NPM - if: env.version_changed == 'true' - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - run: npm publish - - - name: Setup Rust - if: env.version_changed == 'true' - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - name: Publish to Crates.io - if: env.version_changed == 'true' - uses: katyo/publish-crates@v2 - with: - registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} - - - name: Tag versions - if: env.version_changed == 'true' - run: | - git checkout master - git config user.name github-actions[bot] - git config user.email github-actions[bot]@users.noreply.github.com - git tag -d "v${{ env.current_version }}" || true - git push origin --delete "v${{ env.current_version }}" || true - git tag -a "v${{ env.current_version }}" -m "Version ${{ env.current_version }}" - git push origin "v${{ env.current_version }}" diff --git a/.gitignore b/.gitignore index bd77f411..fe416c95 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,32 @@ +# Rust artifacts Cargo.lock -node_modules -build -package-lock.json -/target/ -.build/ \ No newline at end of file +target/ + +# Node artifacts +build/ +prebuilds/ +node_modules/ + +# Swift artifacts +.build/ + +# Python artifacts +dist/ +*.egg-info +*.whl + +# C artifacts +*.a +*.so +*.so.* +*.dylib +*.dll +*.pc + +# Examples +/examples/*/ + +# Grammar volatiles +*.wasm +*.obj +*.o diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 194ff845..00000000 --- a/.npmignore +++ /dev/null @@ -1,5 +0,0 @@ -/test -/examples -/build -/script -/target diff --git a/Cargo.toml b/Cargo.toml index 6a1f1aaf..2a17ab01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,13 @@ [package] name = "tree-sitter-c" -description = "C grammar for the tree-sitter parsing library" -version = "0.20.7" +description = "C grammar for tree-sitter" +version = "0.21.4" authors = [ - "Max Brunsfeld ", - "Amaan Qureshi ", + "Amaan Qureshi ", ] license = "MIT" -readme = "bindings/rust/README.md" -keywords = ["incremental", "parsing", "c"] +keywords = ["incremental", "parsing", "tree-sitter", "c"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-c" edition = "2021" @@ -21,7 +20,7 @@ include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "~0.20.10" +tree-sitter = ">=0.21.0" [build-dependencies] -cc = "~1.0.83" +cc = "1.0.90" diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..405cb51f --- /dev/null +++ b/Makefile @@ -0,0 +1,111 @@ +VERSION := 0.21.4 + +LANGUAGE_NAME := tree-sitter-c + +# repository +SRC_DIR := src + +PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin 2>/dev/null) + +ifeq ($(PARSER_URL),) + PARSER_URL := $(subst .git,,$(PARSER_REPO_URL)) +ifeq ($(shell echo $(PARSER_URL) | grep '^[a-z][-+.0-9a-z]*://'),) + PARSER_URL := $(subst :,/,$(PARSER_URL)) + PARSER_URL := $(subst git@,https://,$(PARSER_URL)) +endif +endif + +TS ?= tree-sitter + +# ABI versioning +SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) +SONAME_MINOR := $(word 2,$(subst ., ,$(VERSION))) + +# install directory layout +PREFIX ?= /usr/local +INCLUDEDIR ?= $(PREFIX)/include +LIBDIR ?= $(PREFIX)/lib +PCLIBDIR ?= $(LIBDIR)/pkgconfig + +# object files +OBJS := $(patsubst %.c,%.o,$(wildcard $(SRC_DIR)/*.c)) + +# flags +ARFLAGS := rcs +override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC + +# OS-specific bits +ifeq ($(OS),Windows_NT) + $(error "Windows is not supported") +else ifeq ($(shell uname),Darwin) + SOEXT = dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS), + endif + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks +else + SOEXT = so + SOEXTVER_MAJOR = so.$(SONAME_MAJOR) + SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) + LINKSHARED := $(LINKSHARED)-shared -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS) + endif + LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).so.$(SONAME_MAJOR) +endif +ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig +endif + +all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc + +lib$(LANGUAGE_NAME).a: $(OBJS) + $(AR) $(ARFLAGS) $@ $^ + +lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) + $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ +ifneq ($(STRIP),) + $(STRIP) $@ +endif + +$(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in + sed -e 's|@URL@|$(PARSER_URL)|' \ + -e 's|@VERSION@|$(VERSION)|' \ + -e 's|@LIBDIR@|$(LIBDIR)|' \ + -e 's|@INCLUDEDIR@|$(INCLUDEDIR)|' \ + -e 's|@REQUIRES@|$(REQUIRES)|' \ + -e 's|@ADDITIONAL_LIBS@|$(ADDITIONAL_LIBS)|' \ + -e 's|=$(PREFIX)|=$${prefix}|' \ + -e 's|@PREFIX@|$(PREFIX)|' $< > $@ + +$(SRC_DIR)/parser.c: grammar.js + $(TS) generate --no-bindings + +install: all + install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' + install -m644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + install -m644 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a + install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) + +uninstall: + $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ + '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ + '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + +clean: + $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) + +test: + $(TS) test + $(TS) parse examples/* --quiet --time + +.PHONY: all install uninstall clean test diff --git a/Package.swift b/Package.swift index 97f073da..e409f263 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,6 @@ import PackageDescription let package = Package( name: "TreeSitterC", - platforms: [.macOS(.v10_13), .iOS(.v11)], products: [ .library(name: "TreeSitterC", targets: ["TreeSitterC"]), ], @@ -12,17 +11,27 @@ let package = Package( .target(name: "TreeSitterC", path: ".", exclude: [ - "binding.gyp", - "bindings", "Cargo.toml", - "examples", - "grammar.js", - "LICENSE", "Makefile", + "binding.gyp", + "bindings/c", + "bindings/go", + "bindings/node", + "bindings/python", + "bindings/rust", + "prebuilds", + "grammar.js", "package.json", - "README.md", - "src/grammar.json", - "src/node-types.json", + "package-lock.json", + "pyproject.toml", + "setup.py", + "test", + "examples", + ".editorconfig", + ".github", + ".gitignore", + ".gitattributes", + ".gitmodules", ], sources: [ "src/parser.c", @@ -32,5 +41,6 @@ let package = Package( ], publicHeadersPath: "bindings/swift", cSettings: [.headerSearchPath("src")]) - ] + ], + cLanguageStandard: .c11 ) diff --git a/README.md b/README.md index 28958087..162d6b41 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,18 @@ # tree-sitter-c -[![CI](https://github.com/tree-sitter/tree-sitter-c/actions/workflows/ci.yml/badge.svg)](https://github.com/tree-sitter/tree-sitter-c/actions/workflows/ci.yml) -[![Discord](https://img.shields.io/discord/1063097320771698699?logo=discord)](https://discord.gg/w7nTvsVJhm) -[![Rust Crate](https://img.shields.io/crates/v/tree-sitter-c.svg)](https://crates.io/crates/tree-sitter-c) -[![Node Package](https://img.shields.io/npm/v/tree-sitter-c.svg)](https://www.npmjs.com/package/tree-sitter-c) +[![CI][ci]](https://github.com/tree-sitter/tree-sitter-c/actions/workflows/ci.yml) +[![discord][discord]](https://discord.gg/w7nTvsVJhm) +[![matrix][matrix]](https://matrix.to/#/#tree-sitter-chat:matrix.org) +[![crates][crates]](https://crates.io/crates/tree-sitter-c) +[![npm][npm]](https://www.npmjs.com/package/tree-sitter-c) +[![pypi][pypi]](https://pypi.org/project/tree-sitter-c) C grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter). Adapted from [this C99 grammar](http://slps.github.io/zoo/c/iso-9899-tc3.html). + +[ci]: https://img.shields.io/github/actions/workflow/status/tree-sitter/tree-sitter-c/ci.yml?logo=github&label=CI +[discord]: https://img.shields.io/discord/1063097320771698699?logo=discord&label=discord +[matrix]: https://img.shields.io/matrix/tree-sitter-chat%3Amatrix.org?logo=matrix&label=matrix +[npm]: https://img.shields.io/npm/v/tree-sitter-c?logo=npm +[crates]: https://img.shields.io/crates/v/tree-sitter-c?logo=rust +[pypi]: https://img.shields.io/pypi/v/tree-sitter-c?logo=pypi&logoColor=ffd242 diff --git a/binding.gyp b/binding.gyp index 3aa8cada..46623442 100644 --- a/binding.gyp +++ b/binding.gyp @@ -2,17 +2,19 @@ "targets": [ { "target_name": "tree_sitter_c_binding", + "dependencies": [ + " +#include -using namespace v8; +typedef struct TSLanguage TSLanguage; extern "C" TSLanguage *tree_sitter_c(); -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_c()); - - Nan::Set(instance, Nan::New("name").ToLocalChecked(), - Nan::New("c").ToLocalChecked()); - Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "c"); + auto language = Napi::External::New(env, tree_sitter_c()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; } -NODE_MODULE(tree_sitter_c_binding, Init) - -} // namespace +NODE_API_MODULE(tree_sitter_c_binding, Init) diff --git a/bindings/node/index.d.ts b/bindings/node/index.d.ts new file mode 100644 index 00000000..efe259ee --- /dev/null +++ b/bindings/node/index.d.ts @@ -0,0 +1,28 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const language: Language; +export = language; diff --git a/bindings/node/index.js b/bindings/node/index.js index 62cc2fe6..6657bcf4 100644 --- a/bindings/node/index.js +++ b/bindings/node/index.js @@ -1,19 +1,7 @@ -try { - module.exports = require('../../build/Release/tree_sitter_c_binding'); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require('../../build/Debug/tree_sitter_c_binding'); - } catch (error2) { - if (error2.code !== 'MODULE_NOT_FOUND') { - throw error2; - } - throw error1; - } -} +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); try { - module.exports.nodeTypeInfo = require('../../src/node-types.json'); + module.exports.nodeTypeInfo = require("../../src/node-types.json"); } catch (_) {} diff --git a/bindings/python/tree_sitter_c/__init__.py b/bindings/python/tree_sitter_c/__init__.py new file mode 100644 index 00000000..714cba64 --- /dev/null +++ b/bindings/python/tree_sitter_c/__init__.py @@ -0,0 +1,5 @@ +"C grammar for tree-sitter" + +from ._binding import language + +__all__ = ["language"] diff --git a/bindings/python/tree_sitter_c/__init__.pyi b/bindings/python/tree_sitter_c/__init__.pyi new file mode 100644 index 00000000..5416666f --- /dev/null +++ b/bindings/python/tree_sitter_c/__init__.pyi @@ -0,0 +1 @@ +def language() -> int: ... diff --git a/bindings/python/tree_sitter_c/binding.c b/bindings/python/tree_sitter_c/binding.c new file mode 100644 index 00000000..8b35f282 --- /dev/null +++ b/bindings/python/tree_sitter_c/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_c(void); + +static PyObject* _binding_language(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_c()); +} + +static PyMethodDef methods[] = { + {"language", _binding_language, METH_NOARGS, + "Get the tree-sitter language for this grammar."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/bindings/python/tree_sitter_c/py.typed b/bindings/python/tree_sitter_c/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/bindings/rust/README.md b/bindings/rust/README.md deleted file mode 100644 index 499e3cac..00000000 --- a/bindings/rust/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# tree-sitter-c - -This crate provides a C grammar for the [tree-sitter][] parsing library. To -use this crate, add it to the `[dependencies]` section of your `Cargo.toml` -file. (Note that you will probably also need to depend on the -[`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful -way.) - -```toml -[dependencies] -tree-sitter = "0.20.10" -tree-sitter-c = "0.20.7" -``` - -Typically, you will use the [language][language func] function to add this -grammar to a tree-sitter [Parser][], and then use the parser to parse some code: - -```rust -let code = r#" - int double(int x) { - return x * 2; - } -"#; -let mut parser = Parser::new(); -parser.set_language(tree_sitter_c::language()).expect("Error loading C grammar"); -let parsed = parser.parse(code, None); -``` - -If you have any questions, please reach out to us in the [tree-sitter -discussions] page. - -[language func]: https://docs.rs/tree-sitter-c/*/tree_sitter_c/fn.language.html -[Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html -[tree-sitter]: https://tree-sitter.github.io/ -[tree-sitter crate]: https://crates.io/crates/tree-sitter -[tree-sitter discussions]: https://github.com/tree-sitter/tree-sitter/discussions diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index d8ec29c0..cbbaf006 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -1,17 +1,15 @@ -use std::path::Path; -extern crate cc; - fn main() { - let src_dir = Path::new("src"); + 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"); + c_config.std("c11").include(src_dir); + + #[cfg(target_env = "msvc")] + c_config.flag("-utf-8"); + let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - c_config.compile("parser"); + + c_config.compile("tree-sitter-c"); } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 7420bb12..7351f38c 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -1,28 +1,20 @@ -// -*- coding: utf-8 -*- -// ------------------------------------------------------------------------------------------------ -// Copyright © 2021, tree-sitter-c authors. -// See the LICENSE file in this repo for license details. -// ------------------------------------------------------------------------------------------------ - -//! This crate provides a C grammar for the [tree-sitter][] parsing library. +//! This crate provides C language support for the [tree-sitter][] parsing library. //! -//! Typically, you will use the [language][language func] function to add this grammar to a +//! 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: //! //! ``` //! use tree_sitter::Parser; //! //! let code = r#" -//! int double(int x) { -//! return x * 2; -//! } +//! int double(int x) { +//! return x * 2; +//! } //! "#; //! let mut parser = Parser::new(); -//! parser.set_language(tree_sitter_c::language()).expect("Error loading C grammar"); -//! let parsed = parser.parse(code, None); -//! # let parsed = parsed.unwrap(); -//! # let root = parsed.root_node(); -//! # assert!(!root.has_error()); +//! parser.set_language(&tree_sitter_c::language()).expect("Error loading C grammar"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); //! ``` //! //! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html @@ -36,15 +28,17 @@ extern "C" { fn tree_sitter_c() -> Language; } -/// Returns the tree-sitter [Language][] for this grammar. +/// 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_c() } } -/// The source of the C tree-sitter grammar description. -pub const GRAMMAR: &str = include_str!("../../grammar.js"); +/// The content of the [`node-types.json`][] file for this grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); /// The syntax highlighting query for this language. pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm"); @@ -52,18 +46,13 @@ pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm"); /// The symbol tagging query for this language. pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); -/// The content of the [`node-types.json`][] file for this grammar. -/// -/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); - #[cfg(test)] mod tests { #[test] - fn can_load_grammar() { + fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(super::language()) + .set_language(&super::language()) .expect("Error loading C grammar"); } } diff --git a/bindings/swift/TreeSitterC/c.h b/bindings/swift/TreeSitterC/c.h index ae1557a4..e725f1e2 100644 --- a/bindings/swift/TreeSitterC/c.h +++ b/bindings/swift/TreeSitterC/c.h @@ -7,10 +7,10 @@ typedef struct TSLanguage TSLanguage; extern "C" { #endif -extern TSLanguage *tree_sitter_c(); +const TSLanguage *tree_sitter_c(void); #ifdef __cplusplus } #endif -#endif // TREE_SITTER_C_H_ \ No newline at end of file +#endif // TREE_SITTER_C_H_ diff --git a/grammar.js b/grammar.js index 2a9fe206..057b6d64 100644 --- a/grammar.js +++ b/grammar.js @@ -1,12 +1,10 @@ /** * @file C grammar for tree-sitter - * @author Max Brunsfeld + * @author Max Brunsfeld + * @author Amaan Qureshi * @license MIT */ -/* eslint-disable arrow-parens */ -/* eslint-disable camelcase */ -/* eslint-disable-next-line spaced-comment */ /// // @ts-check @@ -37,36 +35,47 @@ const PREC = { module.exports = grammar({ name: 'c', + conflicts: $ => [ + [$.type_specifier, $._declarator], + [$.type_specifier, $._declarator, $.macro_type_specifier], + [$.type_specifier, $.expression], + [$.type_specifier, $.expression, $.macro_type_specifier], + [$.type_specifier, $.macro_type_specifier], + [$.type_specifier, $.sized_type_specifier], + [$.sized_type_specifier], + [$.attributed_statement], + [$._declaration_modifiers, $.attributed_statement], + [$.enum_specifier], + [$.type_specifier, $._old_style_parameter_list], + [$.parameter_list, $._old_style_parameter_list], + [$.function_declarator, $._function_declaration_declarator], + [$._block_item, $.statement], + [$._top_level_item, $._top_level_statement], + [$.type_specifier, $._top_level_expression_statement], + ], + extras: $ => [ /\s|\\\r?\n/, $.comment, ], inline: $ => [ - $._statement, - $._block_item, - $._top_level_item, - $._top_level_statement, $._type_identifier, $._field_identifier, $._statement_identifier, $._non_case_statement, $._assignment_left_expression, + $._expression_not_binary, ], - conflicts: $ => [ - [$._type_specifier, $._declarator], - [$._type_specifier, $._declarator, $.macro_type_specifier], - [$._type_specifier, $._expression_not_binary], - [$._type_specifier, $._expression_not_binary, $.macro_type_specifier], - [$._type_specifier, $.macro_type_specifier], - [$._type_specifier, $.sized_type_specifier], - [$.sized_type_specifier], - [$.attributed_statement], - [$._declaration_modifiers, $.attributed_statement], - [$.enum_specifier], - [$._type_specifier, $._old_style_parameter_list], - [$.parameter_list, $._old_style_parameter_list], + supertypes: $ => [ + $.expression, + $.statement, + $.type_specifier, + $._declarator, + $._field_declarator, + $._type_declarator, + $._abstract_declarator, ], word: $ => $.identifier, @@ -97,7 +106,7 @@ module.exports = grammar({ alias($._old_style_function_definition, $.function_definition), $.linkage_specification, $.declaration, - $._statement, + $.statement, $.attributed_statement, $.type_definition, $._empty_declaration, @@ -230,6 +239,7 @@ module.exports = grammar({ function_definition: $ => seq( optional($.ms_call_modifier), $._declaration_specifiers, + optional($.ms_call_modifier), field('declarator', $._declarator), field('body', $.compound_statement), ), @@ -244,13 +254,16 @@ module.exports = grammar({ declaration: $ => seq( $._declaration_specifiers, - $._declaration_declarator, + commaSep1(field('declarator', choice( + seq( + optional($.ms_call_modifier), + $._declaration_declarator, + optional($.gnu_asm_expression), + ), + $.init_declarator, + ))), ';', ), - _declaration_declarator: $ => commaSep1(field('declarator', choice( - seq($._declarator, optional($.gnu_asm_expression)), - $.init_declarator, - ))), type_definition: $ => seq( optional('__extension__'), @@ -260,7 +273,7 @@ module.exports = grammar({ repeat($.attribute_specifier), ';', ), - _type_definition_type: $ => seq(repeat($.type_qualifier), field('type', $._type_specifier), repeat($.type_qualifier)), + _type_definition_type: $ => seq(repeat($.type_qualifier), field('type', $.type_specifier), repeat($.type_qualifier)), _type_definition_declarators: $ => commaSep1(field('declarator', $._type_declarator)), _declaration_modifiers: $ => choice( @@ -273,7 +286,7 @@ module.exports = grammar({ _declaration_specifiers: $ => prec.right(seq( repeat($._declaration_modifiers), - field('type', $._type_specifier), + field('type', $.type_specifier), repeat($._declaration_modifiers), )), @@ -357,6 +370,15 @@ module.exports = grammar({ $.identifier, ), + _declaration_declarator: $ => choice( + $.attributed_declarator, + $.pointer_declarator, + alias($._function_declaration_declarator, $.function_declarator), + $.array_declarator, + $.parenthesized_declarator, + $.identifier, + ), + _field_declarator: $ => choice( alias($.attributed_field_declarator, $.attributed_declarator), alias($.pointer_field_declarator, $.pointer_declarator), @@ -386,21 +408,25 @@ module.exports = grammar({ parenthesized_declarator: $ => prec.dynamic(PREC.PAREN_DECLARATOR, seq( '(', + optional($.ms_call_modifier), $._declarator, ')', )), parenthesized_field_declarator: $ => prec.dynamic(PREC.PAREN_DECLARATOR, seq( '(', + optional($.ms_call_modifier), $._field_declarator, ')', )), parenthesized_type_declarator: $ => prec.dynamic(PREC.PAREN_DECLARATOR, seq( '(', + optional($.ms_call_modifier), $._type_declarator, ')', )), abstract_parenthesized_declarator: $ => prec(1, seq( '(', + optional($.ms_call_modifier), $._abstract_declarator, ')', )), @@ -441,17 +467,32 @@ module.exports = grammar({ field('declarator', $._type_declarator), ))), abstract_pointer_declarator: $ => prec.dynamic(1, prec.right(seq('*', + repeat($.ms_pointer_modifier), repeat($.type_qualifier), field('declarator', optional($._abstract_declarator)), ))), function_declarator: $ => prec.right(1, + seq( + field('declarator', $._declarator), + field('parameters', $.parameter_list), + optional($.gnu_asm_expression), + repeat(choice( + $.attribute_specifier, + $.identifier, + alias($.preproc_call_expression, $.call_expression), + )), + ), + ), + + _function_declaration_declarator: $ => prec.right(1, seq( field('declarator', $._declarator), field('parameters', $.parameter_list), optional($.gnu_asm_expression), repeat($.attribute_specifier), )), + function_field_declarator: $ => prec(1, seq( field('declarator', $._field_declarator), field('parameters', $.parameter_list), @@ -473,36 +514,36 @@ module.exports = grammar({ array_declarator: $ => prec(1, seq( field('declarator', $._declarator), '[', - repeat($.type_qualifier), - field('size', optional(choice($._expression, '*'))), + repeat(choice($.type_qualifier, 'static')), + field('size', optional(choice($.expression, '*'))), ']', )), array_field_declarator: $ => prec(1, seq( field('declarator', $._field_declarator), '[', - repeat($.type_qualifier), - field('size', optional(choice($._expression, '*'))), + repeat(choice($.type_qualifier, 'static')), + field('size', optional(choice($.expression, '*'))), ']', )), array_type_declarator: $ => prec(1, seq( field('declarator', $._type_declarator), '[', - repeat($.type_qualifier), - field('size', optional(choice($._expression, '*'))), + repeat(choice($.type_qualifier, 'static')), + field('size', optional(choice($.expression, '*'))), ']', )), abstract_array_declarator: $ => prec(1, seq( field('declarator', optional($._abstract_declarator)), '[', - repeat($.type_qualifier), - field('size', optional(choice($._expression, '*'))), + repeat(choice($.type_qualifier, 'static')), + field('size', optional(choice($.expression, '*'))), ']', )), init_declarator: $ => seq( field('declarator', $._declarator), '=', - field('value', choice($.initializer_list, $._expression)), + field('value', choice($.initializer_list, $.expression)), ), compound_statement: $ => seq( @@ -524,7 +565,7 @@ module.exports = grammar({ '__thread', ), - type_qualifier: _ => choice( + type_qualifier: $ => choice( 'const', 'constexpr', 'volatile', @@ -534,9 +575,17 @@ module.exports = grammar({ '_Atomic', '_Noreturn', 'noreturn', + $.alignas_qualifier, ), - _type_specifier: $ => choice( + alignas_qualifier: $ => seq( + choice('alignas', '_Alignas'), + '(', + choice($.expression, $.type_descriptor), + ')', + ), + + type_specifier: $ => choice( $.struct_specifier, $.union_specifier, $.enum_specifier, @@ -690,16 +739,14 @@ module.exports = grammar({ optional($.bitfield_clause), )), - bitfield_clause: $ => seq(':', $._expression), + bitfield_clause: $ => seq(':', $.expression), enumerator: $ => seq( field('name', $.identifier), - optional(seq('=', field('value', $._expression))), + optional(seq('=', field('value', $.expression))), ), - variadic_parameter: _ => seq( - '...', - ), + variadic_parameter: _ => '...', parameter_list: $ => seq( '(', @@ -724,10 +771,10 @@ module.exports = grammar({ attributed_statement: $ => seq( repeat1($.attribute_declaration), - $._statement, + $.statement, ), - _statement: $ => choice( + statement: $ => choice( $.case_statement, $._non_case_statement, ), @@ -770,7 +817,7 @@ module.exports = grammar({ labeled_statement: $ => seq( field('label', $._statement_identifier), ':', - $._statement, + $.statement, ), // This is missing binary expressions, others were kept so that macro code can be parsed better and code examples @@ -781,7 +828,7 @@ module.exports = grammar({ expression_statement: $ => seq( optional(choice( - $._expression, + $.expression, $.comma_expression, )), ';', @@ -790,11 +837,11 @@ module.exports = grammar({ if_statement: $ => prec.right(seq( 'if', field('condition', $.parenthesized_expression), - field('consequence', $._statement), + field('consequence', $.statement), optional(field('alternative', $.else_clause)), )), - else_clause: $ => seq('else', $._statement), + else_clause: $ => seq('else', $.statement), switch_statement: $ => seq( 'switch', @@ -804,7 +851,7 @@ module.exports = grammar({ case_statement: $ => prec.right(seq( choice( - seq('case', field('value', $._expression)), + seq('case', field('value', $.expression)), 'default', ), ':', @@ -818,12 +865,12 @@ module.exports = grammar({ while_statement: $ => seq( 'while', field('condition', $.parenthesized_expression), - field('body', $._statement), + field('body', $.statement), ), do_statement: $ => seq( 'do', - field('body', $._statement), + field('body', $.statement), 'while', field('condition', $.parenthesized_expression), ';', @@ -834,21 +881,21 @@ module.exports = grammar({ '(', $._for_statement_body, ')', - field('body', $._statement), + field('body', $.statement), ), _for_statement_body: $ => seq( choice( field('initializer', $.declaration), - seq(field('initializer', optional(choice($._expression, $.comma_expression))), ';'), + seq(field('initializer', optional(choice($.expression, $.comma_expression))), ';'), ), - field('condition', optional(choice($._expression, $.comma_expression))), + field('condition', optional(choice($.expression, $.comma_expression))), ';', - field('update', optional(choice($._expression, $.comma_expression))), + field('update', optional(choice($.expression, $.comma_expression))), ), return_statement: $ => seq( 'return', - optional(choice($._expression, $.comma_expression)), + optional(choice($.expression, $.comma_expression)), ';', ), @@ -889,7 +936,7 @@ module.exports = grammar({ // Expressions - _expression: $ => choice( + expression: $ => choice( $._expression_not_binary, $.binary_expression, ), @@ -911,28 +958,32 @@ module.exports = grammar({ $.compound_literal_expression, $.identifier, $.number_literal, - $.string_literal, + $._string, $.true, $.false, $.null, - $.concatenated_string, $.char_literal, $.parenthesized_expression, $.gnu_asm_expression, ), + _string: $ => prec.left(choice( + $.string_literal, + $.concatenated_string, + )), + comma_expression: $ => seq( - field('left', $._expression), + field('left', $.expression), ',', - field('right', choice($._expression, $.comma_expression)), + field('right', choice($.expression, $.comma_expression)), ), conditional_expression: $ => prec.right(PREC.CONDITIONAL, seq( - field('condition', $._expression), + field('condition', $.expression), '?', - optional(field('consequence', $._expression)), + optional(field('consequence', choice($.expression, $.comma_expression))), ':', - field('alternative', $._expression), + field('alternative', $.expression), )), _assignment_left_expression: $ => choice( @@ -959,17 +1010,17 @@ module.exports = grammar({ '^=', '|=', )), - field('right', $._expression), + field('right', $.expression), )), pointer_expression: $ => prec.left(PREC.CAST, seq( field('operator', choice('*', '&')), - field('argument', $._expression), + field('argument', $.expression), )), unary_expression: $ => prec.left(PREC.UNARY, seq( field('operator', choice('!', '~', '-', '+')), - field('argument', $._expression), + field('argument', $.expression), )), binary_expression: $ => { @@ -996,16 +1047,16 @@ module.exports = grammar({ return choice(...table.map(([operator, precedence]) => { return prec.left(precedence, seq( - field('left', $._expression), + field('left', $.expression), // @ts-ignore field('operator', operator), - field('right', $._expression), + field('right', $.expression), )); })); }, update_expression: $ => { - const argument = field('argument', $._expression); + const argument = field('argument', $.expression); const operator = field('operator', choice('--', '++')); return prec.right(PREC.UNARY, choice( seq(operator, argument), @@ -1017,12 +1068,12 @@ module.exports = grammar({ '(', field('type', $.type_descriptor), ')', - field('value', $._expression), + field('value', $.expression), )), type_descriptor: $ => seq( repeat($.type_qualifier), - field('type', $._type_specifier), + field('type', $.type_specifier), repeat($.type_qualifier), field('declarator', optional($._abstract_declarator)), ), @@ -1030,7 +1081,7 @@ module.exports = grammar({ sizeof_expression: $ => prec(PREC.SIZEOF, seq( 'sizeof', choice( - field('value', $._expression), + field('value', $.expression), seq('(', field('type', $.type_descriptor), ')'), ), )), @@ -1048,21 +1099,21 @@ module.exports = grammar({ generic_expression: $ => prec(PREC.CALL, seq( '_Generic', '(', - $._expression, + $.expression, ',', - commaSep1(seq($.type_descriptor, ':', $._expression)), + commaSep1(seq($.type_descriptor, ':', $.expression)), ')', )), subscript_expression: $ => prec(PREC.SUBSCRIPT, seq( - field('argument', $._expression), + field('argument', $.expression), '[', - field('index', $._expression), + field('index', $.expression), ']', )), call_expression: $ => prec(PREC.CALL, seq( - field('function', $._expression), + field('function', $.expression), field('arguments', $.argument_list), )), @@ -1070,7 +1121,7 @@ module.exports = grammar({ choice('asm', '__asm__'), repeat($.gnu_asm_qualifier), '(', - field('assembly_code', choice($.string_literal, $.concatenated_string)), + field('assembly_code', $._string), optional(seq( field('output_operands', $.gnu_asm_output_operand_list), optional(seq( @@ -1120,13 +1171,13 @@ module.exports = grammar({ )), field('constraint', $.string_literal), '(', - field('value', $._expression), + field('value', $.expression), ')', ), gnu_asm_clobber_list: $ => seq( ':', - commaSep(field('register', $.string_literal)), + commaSep(field('register', $._string)), ), gnu_asm_goto_list: $ => seq( @@ -1135,11 +1186,11 @@ module.exports = grammar({ ), // The compound_statement is added to parse macros taking statements as arguments, e.g. MYFORLOOP(1, 10, i, { foo(i); bar(i); }) - argument_list: $ => seq('(', commaSep(choice(seq(optional('__extension__'), $._expression), $.compound_statement)), ')'), + argument_list: $ => seq('(', commaSep(choice(seq(optional('__extension__'), $.expression), $.compound_statement)), ')'), field_expression: $ => seq( prec(PREC.FIELD, seq( - field('argument', $._expression), + field('argument', $.expression), field('operator', choice('.', '->')), )), field('field', $._field_identifier), @@ -1154,7 +1205,7 @@ module.exports = grammar({ parenthesized_expression: $ => seq( '(', - choice($._expression, $.comma_expression), + choice($.expression, $.comma_expression), ')', ), @@ -1162,7 +1213,7 @@ module.exports = grammar({ '{', commaSep(choice( $.initializer_pair, - $._expression, + $.expression, $.initializer_list, )), optional(','), @@ -1177,18 +1228,18 @@ module.exports = grammar({ $.subscript_range_designator, ))), '=', - field('value', choice($._expression, $.initializer_list)), + field('value', choice($.expression, $.initializer_list)), ), seq( field('designator', $._field_identifier), ':', - field('value', choice($._expression, $.initializer_list)), + field('value', choice($.expression, $.initializer_list)), ), ), - subscript_designator: $ => seq('[', $._expression, ']'), + subscript_designator: $ => seq('[', $.expression, ']'), - subscript_range_designator: $ => seq('[', field('start', $._expression), '...', field('end', $._expression), ']'), + subscript_range_designator: $ => seq('[', field('start', $.expression), '...', field('end', $.expression), ']'), field_designator: $ => seq('.', $._field_identifier), @@ -1232,10 +1283,15 @@ module.exports = grammar({ '\'', ), + // Must concatenate at least 2 nodes, one of which must be a string_literal. + // Identifier is added to parse macros that are strings, like PRIu64. concatenated_string: $ => prec.right(seq( - choice($.identifier, $.string_literal), - $.string_literal, - repeat(choice($.string_literal, $.identifier)), // Identifier is added to parse macros that are strings, like PRIu64 + choice( + seq($.identifier, $.string_literal), + seq($.string_literal, $.string_literal), + seq($.string_literal, $.identifier), + ), + repeat(choice($.string_literal, $.identifier)), )), string_literal: $ => seq( @@ -1280,7 +1336,7 @@ module.exports = grammar({ _statement_identifier: $ => alias($.identifier, $.statement_identifier), _empty_declaration: $ => seq( - $._type_specifier, + $.type_specifier, ';', ), @@ -1301,16 +1357,6 @@ module.exports = grammar({ ), )), }, - - supertypes: $ => [ - $._expression, - $._statement, - $._type_specifier, - $._declarator, - $._field_declarator, - $._type_declarator, - $._abstract_declarator, - ], }); module.exports.PREC = PREC; @@ -1333,31 +1379,21 @@ function preprocIf(suffix, content, precedence = 0) { * @return {ChoiceRule} * */ - function elseBlock($) { + function alternativeBlock($) { return choice( suffix ? alias($['preproc_else' + suffix], $.preproc_else) : $.preproc_else, suffix ? alias($['preproc_elif' + suffix], $.preproc_elif) : $.preproc_elif, + suffix ? alias($['preproc_elifdef' + suffix], $.preproc_elifdef) : $.preproc_elifdef, ); } - /** - * - * @param {GrammarSymbols} $ - * - * @return {AliasRule | SymbolRule} - * - */ - function elifBlock($) { - return suffix ? alias($['preproc_elifdef' + suffix], $.preproc_elifdef) : $.preproc_elifdef; - } - return { ['preproc_if' + suffix]: $ => prec(precedence, seq( preprocessor('if'), field('condition', $._preproc_expression), '\n', repeat(content($)), - field('alternative', optional(elseBlock($))), + field('alternative', optional(alternativeBlock($))), preprocessor('endif'), )), @@ -1365,7 +1401,7 @@ function preprocIf(suffix, content, precedence = 0) { choice(preprocessor('ifdef'), preprocessor('ifndef')), field('name', $.identifier), repeat(content($)), - field('alternative', optional(choice(elseBlock($), elifBlock($)))), + field('alternative', optional(alternativeBlock($))), preprocessor('endif'), )), @@ -1379,14 +1415,14 @@ function preprocIf(suffix, content, precedence = 0) { field('condition', $._preproc_expression), '\n', repeat(content($)), - field('alternative', optional(elseBlock($))), + field('alternative', optional(alternativeBlock($))), )), ['preproc_elifdef' + suffix]: $ => prec(precedence, seq( choice(preprocessor('elifdef'), preprocessor('elifndef')), field('name', $.identifier), repeat(content($)), - field('alternative', optional(elseBlock($))), + field('alternative', optional(alternativeBlock($))), )), }; } diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..b57b3eda --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1474 @@ +{ + "name": "tree-sitter-c", + "version": "0.21.4", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tree-sitter-c", + "version": "0.21.4", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.1" + }, + "devDependencies": { + "eslint": "^8.57.0", + "eslint-config-google": "^0.14.0", + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.22.6" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-google": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", + "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "eslint": ">=5.16.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-abi": { + "version": "3.57.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.57.0.tgz", + "integrity": "sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.0.0.tgz", + "integrity": "sha512-ipO7rsHEBqa9STO5C5T10fj732ml+5kLN1cAG8/jdHd56ldQeGj3Q7+scUS+VHK/qy1zLEwC4wMK5+yM0btPvw==", + "engines": { + "node": "^18 || ^20 || >= 21" + } + }, + "node_modules/node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/prebuildify": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", + "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + }, + "bin": { + "prebuildify": "bin.js" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "hasInstallScript": true, + "peer": true, + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + } + }, + "node_modules/tree-sitter-cli": { + "version": "0.22.6", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.6.tgz", + "integrity": "sha512-s7mYOJXi8sIFkt/nLJSqlYZP96VmKTc3BAwIX0rrrlRxWjWuCwixFqwzxWZBQz4R8Hx01iP7z3cT3ih58BUmZQ==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json index 9bce07d6..bab828e8 100644 --- a/package.json +++ b/package.json @@ -1,35 +1,55 @@ { "name": "tree-sitter-c", - "version": "0.20.7", - "description": "C grammar for node-tree-sitter", + "version": "0.21.4", + "description": "C grammar for tree-sitter", + "repository": "github:tree-sitter/tree-sitter-c", + "license": "MIT", + "author": "Max Brunsfeld ", + "contributors": [ + "Amaan Qureshi " + ], "main": "bindings/node", + "types": "bindings/node", "keywords": [ - "parser", - "lexer", + "incremental", + "parsing", + "tree-sitter", "c" ], - "repository": { - "type": "git", - "url": "https://github.com/tree-sitter/tree-sitter-c.git" - }, - "author": "Max Brunsfeld ", - "contributors": [ - "Amaan Qureshi " + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" ], - "license": "MIT", "dependencies": { - "nan": "^2.18.0" + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.1" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } }, "devDependencies": { - "eslint": "^8.56.0", + "eslint": "^8.57.0", "eslint-config-google": "^0.14.0", - "tree-sitter-cli": "^0.20.8" + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.22.6" }, "scripts": { - "build": "tree-sitter generate && node-gyp build", + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip", + "build": "tree-sitter generate --no-bindings", + "build-wasm": "tree-sitter build --wasm", "lint": "eslint grammar.js", - "test": "tree-sitter test && tree-sitter parse examples/* --quiet --time", - "test-windows": "tree-sitter test" + "parse": "tree-sitter parse", + "test": "tree-sitter test" }, "tree-sitter": [ { @@ -39,9 +59,50 @@ "h" ], "injection-regex": "^(c|h)$", - "highlights": [ - "queries/highlights.scm" + "highlights": "queries/highlights.scm", + "tags": "queries/tags.scm" + } + ], + "eslintConfig": { + "env": { + "commonjs": true, + "es2021": true + }, + "extends": "google", + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { + "arrow-parens": "off", + "camel-case": "off", + "indent": [ + "error", + 2, + { + "SwitchCase": 1 + } + ], + "max-len": [ + "error", + { + "code": 160, + "ignoreComments": true, + "ignoreUrls": true, + "ignoreStrings": true + } + ], + "spaced-comment": [ + "warn", + "always", + { + "line": { + "markers": [ + "/" + ] + } + } ] } - ] + } } diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..9942623e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-c" +description = "C grammar for tree-sitter" +version = "0.21.4" +keywords = ["incremental", "parsing", "tree-sitter", "c"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed", +] +authors = [ + { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, + { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-c" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/queries/highlights.scm b/queries/highlights.scm index 04d9a04f..8ee11890 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -1,3 +1,8 @@ +(identifier) @variable + +((identifier) @constant + (#match? @constant "^[A-Z][A-Z\\d_]*$")) + "break" @keyword "case" @keyword "const" @keyword @@ -57,6 +62,12 @@ (number_literal) @number (char_literal) @number +(field_identifier) @property +(statement_identifier) @label +(type_identifier) @type +(primitive_type) @type +(sized_type_specifier) @type + (call_expression function: (identifier) @function) (call_expression @@ -67,15 +78,4 @@ (preproc_function_def name: (identifier) @function.special) -(field_identifier) @property -(statement_identifier) @label -(type_identifier) @type -(primitive_type) @type -(sized_type_specifier) @type - -((identifier) @constant - (#match? @constant "^[A-Z][A-Z\\d_]*$")) - -(identifier) @variable - (comment) @comment diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..2d214fa9 --- /dev/null +++ b/setup.py @@ -0,0 +1,56 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_c", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp38", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_c": ["*.pyi", "py.typed"], + "tree_sitter_c.queries": ["*.scm"], + }, + ext_package="tree_sitter_c", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_c/binding.c", + "src/parser.c", + ], + extra_compile_args=( + ["-std=c11"] if system() != 'Windows' else [] + ), + define_macros=[ + ("Py_LIMITED_API", "0x03080000"), + ("PY_SSIZE_T_CLEAN", None) + ], + include_dirs=["src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/src/grammar.json b/src/grammar.json index fde1224c..d32c70f7 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -101,7 +101,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" }, { "type": "SYMBOL", @@ -443,6 +443,10 @@ { "type": "SYMBOL", "name": "preproc_elif" + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" } ] }, @@ -518,17 +522,12 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "preproc_else" - }, - { - "type": "SYMBOL", - "name": "preproc_elif" - } - ] + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" }, { "type": "SYMBOL", @@ -629,6 +628,10 @@ { "type": "SYMBOL", "name": "preproc_elif" + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" } ] }, @@ -701,6 +704,10 @@ { "type": "SYMBOL", "name": "preproc_elif" + }, + { + "type": "SYMBOL", + "name": "preproc_elifdef" } ] }, @@ -773,6 +780,15 @@ }, "named": true, "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -848,27 +864,22 @@ "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": "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": "ALIAS", @@ -984,6 +995,15 @@ }, "named": true, "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -1066,6 +1086,15 @@ }, "named": true, "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -1147,6 +1176,15 @@ }, "named": true, "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -1231,27 +1269,22 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_else_in_enumerator_list" - }, - "named": true, - "value": "preproc_else" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_elif_in_enumerator_list" - }, - "named": true, - "value": "preproc_elif" - } - ] + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list" + }, + "named": true, + "value": "preproc_elif" }, { "type": "ALIAS", @@ -1385,6 +1418,15 @@ }, "named": true, "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -1476,6 +1518,15 @@ }, "named": true, "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -1548,6 +1599,15 @@ }, "named": true, "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -1623,27 +1683,22 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_else_in_enumerator_list_no_comma" - }, - "named": true, - "value": "preproc_else" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_elif_in_enumerator_list_no_comma" - }, - "named": true, - "value": "preproc_elif" - } - ] + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elif" }, { "type": "ALIAS", @@ -1759,6 +1814,15 @@ }, "named": true, "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -1841,6 +1905,15 @@ }, "named": true, "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_enumerator_list_no_comma" + }, + "named": true, + "value": "preproc_elifdef" } ] }, @@ -2721,6 +2794,18 @@ "type": "SYMBOL", "name": "_declaration_specifiers" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "declarator", @@ -2796,97 +2881,117 @@ "name": "_declaration_specifiers" }, { - "type": "SYMBOL", - "name": "_declaration_declarator" - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - "_declaration_declarator": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_declarator" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", - "name": "gnu_asm_expression" + "name": "_declaration_declarator" }, { - "type": "BLANK" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] } ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" } ] - }, - { - "type": "SYMBOL", - "name": "init_declarator" } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_declarator" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", - "name": "gnu_asm_expression" + "name": "_declaration_declarator" }, { - "type": "BLANK" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] } ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" } ] - }, - { - "type": "SYMBOL", - "name": "init_declarator" } - ] - } + } + ] } - ] - } + } + ] + }, + { + "type": "STRING", + "value": ";" } ] }, @@ -2945,7 +3050,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "type_specifier" } }, { @@ -3033,7 +3138,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "type_specifier" } }, { @@ -3351,6 +3456,40 @@ } ] }, + "_declaration_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributed_declarator" + }, + { + "type": "SYMBOL", + "name": "pointer_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_function_declaration_declarator" + }, + "named": true, + "value": "function_declarator" + }, + { + "type": "SYMBOL", + "name": "array_declarator" + }, + { + "type": "SYMBOL", + "name": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, "_field_declarator": { "type": "CHOICE", "members": [ @@ -3520,6 +3659,18 @@ "type": "STRING", "value": "(" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declarator" @@ -3541,6 +3692,18 @@ "type": "STRING", "value": "(" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_field_declarator" @@ -3562,6 +3725,18 @@ "type": "STRING", "value": "(" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_type_declarator" @@ -3583,6 +3758,18 @@ "type": "STRING", "value": "(" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_abstract_declarator" @@ -3820,6 +4007,13 @@ "type": "STRING", "value": "*" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, { "type": "REPEAT", "content": { @@ -3848,6 +4042,68 @@ } }, "function_declarator": { + "type": "PREC_RIGHT", + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + } + } + ] + } + }, + "_function_declaration_declarator": { "type": "PREC_RIGHT", "value": 1, "content": { @@ -4021,8 +4277,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "type_qualifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] } }, { @@ -4036,7 +4301,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4078,8 +4343,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "type_qualifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] } }, { @@ -4093,7 +4367,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4135,8 +4409,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "type_qualifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] } }, { @@ -4150,7 +4433,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4200,8 +4483,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "type_qualifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] } }, { @@ -4215,7 +4507,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4263,7 +4555,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -4373,10 +4665,53 @@ { "type": "STRING", "value": "noreturn" + }, + { + "type": "SYMBOL", + "name": "alignas_qualifier" + } + ] + }, + "alignas_qualifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "alignas" + }, + { + "type": "STRING", + "value": "_Alignas" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + } + ] + }, + { + "type": "STRING", + "value": ")" } ] }, - "_type_specifier": { + "type_specifier": { "type": "CHOICE", "members": [ { @@ -5229,7 +5564,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -5259,7 +5594,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5272,13 +5607,8 @@ ] }, "variadic_parameter": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "..." - } - ] + "type": "STRING", + "value": "..." }, "parameter_list": { "type": "SEQ", @@ -5454,11 +5784,11 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } ] }, - "_statement": { + "statement": { "type": "CHOICE", "members": [ { @@ -5619,7 +5949,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } ] }, @@ -5647,7 +5977,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -5689,7 +6019,7 @@ "name": "consequence", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -5720,7 +6050,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } ] }, @@ -5770,7 +6100,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5828,7 +6158,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -5845,7 +6175,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -5890,7 +6220,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -5923,7 +6253,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -5956,7 +6286,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -5985,7 +6315,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6016,7 +6346,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6167,7 +6497,7 @@ } ] }, - "_expression": { + "expression": { "type": "CHOICE", "members": [ { @@ -6249,7 +6579,7 @@ }, { "type": "SYMBOL", - "name": "string_literal" + "name": "_string" }, { "type": "SYMBOL", @@ -6263,10 +6593,6 @@ "type": "SYMBOL", "name": "null" }, - { - "type": "SYMBOL", - "name": "concatenated_string" - }, { "type": "SYMBOL", "name": "char_literal" @@ -6281,6 +6607,23 @@ } ] }, + "_string": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + } + ] + } + }, "comma_expression": { "type": "SEQ", "members": [ @@ -6289,7 +6632,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6304,7 +6647,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6326,7 +6669,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6340,8 +6683,17 @@ "type": "FIELD", "name": "consequence", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] } }, { @@ -6358,7 +6710,7 @@ "name": "alternative", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6465,7 +6817,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6499,7 +6851,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6541,7 +6893,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6561,7 +6913,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6577,7 +6929,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6594,7 +6946,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6610,7 +6962,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6627,7 +6979,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6643,7 +6995,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6660,7 +7012,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6676,7 +7028,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6693,7 +7045,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6709,7 +7061,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6726,7 +7078,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6742,7 +7094,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6759,7 +7111,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6775,7 +7127,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6792,7 +7144,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6808,7 +7160,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6825,7 +7177,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6841,7 +7193,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6858,7 +7210,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6874,7 +7226,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6891,7 +7243,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6907,7 +7259,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6924,7 +7276,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6940,7 +7292,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6957,7 +7309,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6973,7 +7325,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6990,7 +7342,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7006,7 +7358,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7023,7 +7375,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7039,7 +7391,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7056,7 +7408,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7072,7 +7424,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7089,7 +7441,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7105,7 +7457,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7122,7 +7474,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7138,7 +7490,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7177,7 +7529,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7190,7 +7542,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7242,7 +7594,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7263,7 +7615,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "type_specifier" } }, { @@ -7309,7 +7661,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7455,7 +7807,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -7477,7 +7829,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -7503,7 +7855,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -7530,7 +7882,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7542,7 +7894,7 @@ "name": "index", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7563,7 +7915,7 @@ "name": "function", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7611,17 +7963,8 @@ "type": "FIELD", "name": "assembly_code", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "string_literal" - }, - { - "type": "SYMBOL", - "name": "concatenated_string" - } - ] + "type": "SYMBOL", + "name": "_string" } }, { @@ -7934,7 +8277,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7961,7 +8304,7 @@ "name": "register", "content": { "type": "SYMBOL", - "name": "string_literal" + "name": "_string" } }, { @@ -7978,7 +8321,7 @@ "name": "register", "content": { "type": "SYMBOL", - "name": "string_literal" + "name": "_string" } } ] @@ -8076,7 +8419,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8115,7 +8458,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8155,7 +8498,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8229,7 +8572,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8265,7 +8608,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8291,7 +8634,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8369,7 +8712,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8403,7 +8746,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8425,7 +8768,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -8445,7 +8788,7 @@ "name": "start", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8457,7 +8800,7 @@ "name": "end", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8887,19 +9230,46 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] }, { - "type": "SYMBOL", - "name": "string_literal" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] } ] }, - { - "type": "SYMBOL", - "name": "string_literal" - }, { "type": "REPEAT", "content": { @@ -9135,7 +9505,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type_specifier" + "name": "type_specifier" }, { "type": "STRING", @@ -9227,29 +9597,29 @@ ], "conflicts": [ [ - "_type_specifier", + "type_specifier", "_declarator" ], [ - "_type_specifier", + "type_specifier", "_declarator", "macro_type_specifier" ], [ - "_type_specifier", - "_expression_not_binary" + "type_specifier", + "expression" ], [ - "_type_specifier", - "_expression_not_binary", + "type_specifier", + "expression", "macro_type_specifier" ], [ - "_type_specifier", + "type_specifier", "macro_type_specifier" ], [ - "_type_specifier", + "type_specifier", "sized_type_specifier" ], [ @@ -9266,58 +9636,47 @@ "enum_specifier" ], [ - "_type_specifier", + "type_specifier", "_old_style_parameter_list" ], [ "parameter_list", "_old_style_parameter_list" + ], + [ + "function_declarator", + "_function_declaration_declarator" + ], + [ + "_block_item", + "statement" + ], + [ + "_top_level_item", + "_top_level_statement" + ], + [ + "type_specifier", + "_top_level_expression_statement" ] ], "precedences": [], "externals": [], "inline": [ - "_statement", - "_block_item", - "_top_level_item", - "_top_level_statement", "_type_identifier", "_field_identifier", "_statement_identifier", "_non_case_statement", - "_assignment_left_expression" + "_assignment_left_expression", + "_expression_not_binary" ], "supertypes": [ - "_expression", - "_statement", - "_type_specifier", + "expression", + "statement", + "type_specifier", "_declarator", "_field_declarator", "_type_declarator", "_abstract_declarator" - ], - "PREC": { - "PAREN_DECLARATOR": -10, - "ASSIGNMENT": -2, - "CONDITIONAL": -1, - "DEFAULT": 0, - "LOGICAL_OR": 1, - "LOGICAL_AND": 2, - "INCLUSIVE_OR": 3, - "EXCLUSIVE_OR": 4, - "BITWISE_AND": 5, - "EQUAL": 6, - "RELATIONAL": 7, - "OFFSETOF": 8, - "SHIFT": 9, - "ADD": 10, - "MULTIPLY": 11, - "CAST": 12, - "SIZEOF": 13, - "UNARY": 14, - "CALL": 15, - "FIELD": 16, - "SUBSCRIPT": 17 - } + ] } - diff --git a/src/node-types.json b/src/node-types.json index c3fba3cb..fc27d765 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -52,7 +52,71 @@ ] }, { - "type": "_expression", + "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": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "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": "primitive_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + { + "type": "expression", "named": true, "subtypes": [ { @@ -158,37 +222,7 @@ ] }, { - "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": "parenthesized_declarator", - "named": true - }, - { - "type": "pointer_declarator", - "named": true - } - ] - }, - { - "type": "_statement", + "type": "statement", "named": true, "subtypes": [ { @@ -258,41 +292,7 @@ ] }, { - "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": "primitive_type", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - }, - { - "type": "_type_specifier", + "type": "type_specifier", "named": true, "subtypes": [ { @@ -348,7 +348,7 @@ "named": false }, { - "type": "_expression", + "type": "expression", "named": true } ] @@ -396,12 +396,16 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { "type": "_abstract_declarator", "named": true + }, + { + "type": "ms_call_modifier", + "named": true } ] } @@ -425,6 +429,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "ms_pointer_modifier", + "named": true + }, { "type": "type_qualifier", "named": true @@ -432,6 +440,25 @@ ] } }, + { + "type": "alignas_qualifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + }, { "type": "alignof_expression", "named": true, @@ -457,11 +484,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "compound_statement", "named": true }, { - "type": "compound_statement", + "type": "expression", "named": true }, { @@ -502,7 +529,7 @@ "named": false }, { - "type": "_expression", + "type": "expression", "named": true } ] @@ -608,7 +635,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -717,11 +744,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "attribute_declaration", "named": true }, { - "type": "attribute_declaration", + "type": "statement", "named": true } ] @@ -736,7 +763,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -828,7 +855,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -848,7 +875,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -878,7 +905,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -894,7 +921,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -994,7 +1021,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1029,7 +1056,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1039,11 +1066,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1084,14 +1111,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -1128,9 +1147,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -1163,7 +1190,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1173,7 +1200,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1183,7 +1210,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", + "named": true + }, + { + "type": "expression", "named": true } ] @@ -1204,16 +1235,40 @@ "required": true, "types": [ { - "type": "_declarator", + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "function_declarator", "named": true }, { "type": "gnu_asm_expression", "named": true }, + { + "type": "identifier", + "named": true + }, { "type": "init_declarator", "named": true + }, + { + "type": "ms_call_modifier", + "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true } ] }, @@ -1222,7 +1277,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -1263,14 +1318,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -1307,9 +1354,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -1323,7 +1378,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1349,7 +1404,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1420,7 +1475,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1463,11 +1518,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1492,7 +1547,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -1588,7 +1643,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1628,7 +1683,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1638,11 +1693,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1652,15 +1707,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "declaration", "named": true }, { - "type": "declaration", + "type": "expression", "named": true } ] @@ -1670,11 +1725,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1722,9 +1777,17 @@ "type": "attribute_specifier", "named": true }, + { + "type": "call_expression", + "named": true + }, { "type": "gnu_asm_expression", "named": true + }, + { + "type": "identifier", + "named": true } ] } @@ -1758,7 +1821,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -1808,7 +1871,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -1826,6 +1889,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "concatenated_string", + "named": true + }, { "type": "string_literal", "named": true @@ -1949,7 +2016,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2074,7 +2141,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -2100,7 +2167,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2120,7 +2187,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2165,7 +2232,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2196,7 +2263,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -2383,7 +2450,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -2444,7 +2511,7 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { @@ -2458,6 +2525,10 @@ { "type": "_type_declarator", "named": true + }, + { + "type": "ms_call_modifier", + "named": true } ] } @@ -2471,11 +2542,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true }, { @@ -2536,7 +2607,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2636,6 +2707,10 @@ "type": "preproc_elif", "named": true }, + { + "type": "preproc_elifdef", + "named": true + }, { "type": "preproc_else", "named": true @@ -2685,14 +2760,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -2737,9 +2804,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -2756,6 +2831,10 @@ "type": "preproc_elif", "named": true }, + { + "type": "preproc_elifdef", + "named": true + }, { "type": "preproc_else", "named": true @@ -2777,14 +2856,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -2829,9 +2900,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -2844,14 +2923,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -2896,9 +2967,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -2951,6 +3030,10 @@ "type": "preproc_elif", "named": true }, + { + "type": "preproc_elifdef", + "named": true + }, { "type": "preproc_else", "named": true @@ -3000,14 +3083,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -3052,9 +3127,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -3096,14 +3179,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -3148,9 +3223,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -3207,11 +3290,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -3333,7 +3416,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3413,7 +3496,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3428,7 +3511,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3438,7 +3521,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3454,7 +3537,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3464,7 +3547,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3505,10 +3588,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_type_specifier", - "named": true - }, { "type": "attributed_statement", "named": true @@ -3601,6 +3680,10 @@ "type": "type_definition", "named": true }, + { + "type": "type_specifier", + "named": true + }, { "type": "while_statement", "named": true @@ -3627,7 +3710,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -3667,7 +3750,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -3687,7 +3770,17 @@ { "type": "type_qualifier", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "alignas_qualifier", + "named": true + } + ] + } }, { "type": "unary_expression", @@ -3698,7 +3791,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -3780,7 +3873,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3815,7 +3908,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -4076,6 +4169,10 @@ "type": "^=", "named": false }, + { + "type": "_Alignas", + "named": false + }, { "type": "_Alignof", "named": false @@ -4192,6 +4289,10 @@ "type": "_unaligned", "named": false }, + { + "type": "alignas", + "named": false + }, { "type": "alignof", "named": false diff --git a/src/parser.c b/src/parser.c index f065e551..a9ef00df 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,7 +1,6 @@ #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -14,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2229 -#define LARGE_STATE_COUNT 557 -#define SYMBOL_COUNT 345 +#define STATE_COUNT 1981 +#define LARGE_STATE_COUNT 446 +#define SYMBOL_COUNT 355 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 155 +#define TOKEN_COUNT 157 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 125 +#define PRODUCTION_ID_COUNT 132 enum ts_symbol_identifiers { sym_identifier = 1, @@ -94,9 +93,9 @@ enum ts_symbol_identifiers { anon_sym_long = 67, anon_sym_short = 68, anon_sym_LBRACK = 69, - anon_sym_RBRACK = 70, - anon_sym_EQ = 71, - anon_sym_static = 72, + anon_sym_static = 70, + anon_sym_RBRACK = 71, + anon_sym_EQ = 72, anon_sym_auto = 73, anon_sym_register = 74, anon_sym_inline = 75, @@ -113,265 +112,275 @@ enum ts_symbol_identifiers { anon_sym__Atomic = 86, anon_sym__Noreturn = 87, anon_sym_noreturn = 88, - sym_primitive_type = 89, - anon_sym_enum = 90, - anon_sym_COLON = 91, - anon_sym_struct = 92, - anon_sym_union = 93, - anon_sym_if = 94, - anon_sym_else = 95, - anon_sym_switch = 96, - anon_sym_case = 97, - anon_sym_default = 98, - anon_sym_while = 99, - anon_sym_do = 100, - anon_sym_for = 101, - anon_sym_return = 102, - anon_sym_break = 103, - anon_sym_continue = 104, - anon_sym_goto = 105, - anon_sym___try = 106, - anon_sym___except = 107, - anon_sym___finally = 108, - anon_sym___leave = 109, - anon_sym_QMARK = 110, - anon_sym_STAR_EQ = 111, - anon_sym_SLASH_EQ = 112, - anon_sym_PERCENT_EQ = 113, - anon_sym_PLUS_EQ = 114, - anon_sym_DASH_EQ = 115, - anon_sym_LT_LT_EQ = 116, - anon_sym_GT_GT_EQ = 117, - anon_sym_AMP_EQ = 118, - anon_sym_CARET_EQ = 119, - anon_sym_PIPE_EQ = 120, - anon_sym_DASH_DASH = 121, - anon_sym_PLUS_PLUS = 122, - anon_sym_sizeof = 123, - anon_sym___alignof__ = 124, - anon_sym___alignof = 125, - anon_sym__alignof = 126, - anon_sym_alignof = 127, - anon_sym__Alignof = 128, - anon_sym_offsetof = 129, - anon_sym__Generic = 130, - anon_sym_asm = 131, - anon_sym___asm__ = 132, - anon_sym_DOT = 133, - anon_sym_DASH_GT = 134, - sym_number_literal = 135, - anon_sym_L_SQUOTE = 136, - anon_sym_u_SQUOTE = 137, - anon_sym_U_SQUOTE = 138, - anon_sym_u8_SQUOTE = 139, - anon_sym_SQUOTE = 140, - aux_sym_char_literal_token1 = 141, - anon_sym_L_DQUOTE = 142, - anon_sym_u_DQUOTE = 143, - anon_sym_U_DQUOTE = 144, - anon_sym_u8_DQUOTE = 145, - anon_sym_DQUOTE = 146, - aux_sym_string_literal_token1 = 147, - sym_escape_sequence = 148, - sym_system_lib_string = 149, - sym_true = 150, - sym_false = 151, - anon_sym_NULL = 152, - anon_sym_nullptr = 153, - sym_comment = 154, - sym_translation_unit = 155, - sym_preproc_include = 156, - sym_preproc_def = 157, - sym_preproc_function_def = 158, - sym_preproc_params = 159, - sym_preproc_call = 160, - sym_preproc_if = 161, - sym_preproc_ifdef = 162, - sym_preproc_else = 163, - sym_preproc_elif = 164, - sym_preproc_elifdef = 165, - sym_preproc_if_in_field_declaration_list = 166, - sym_preproc_ifdef_in_field_declaration_list = 167, - sym_preproc_else_in_field_declaration_list = 168, - sym_preproc_elif_in_field_declaration_list = 169, - sym_preproc_elifdef_in_field_declaration_list = 170, - sym_preproc_if_in_enumerator_list = 171, - sym_preproc_ifdef_in_enumerator_list = 172, - sym_preproc_else_in_enumerator_list = 173, - sym_preproc_elif_in_enumerator_list = 174, - sym_preproc_elifdef_in_enumerator_list = 175, - sym_preproc_if_in_enumerator_list_no_comma = 176, - sym_preproc_ifdef_in_enumerator_list_no_comma = 177, - sym_preproc_else_in_enumerator_list_no_comma = 178, - sym_preproc_elif_in_enumerator_list_no_comma = 179, - sym_preproc_elifdef_in_enumerator_list_no_comma = 180, - sym__preproc_expression = 181, - sym_preproc_parenthesized_expression = 182, - sym_preproc_defined = 183, - sym_preproc_unary_expression = 184, - sym_preproc_call_expression = 185, - sym_preproc_argument_list = 186, - sym_preproc_binary_expression = 187, - sym_function_definition = 188, - sym__old_style_function_definition = 189, - sym_declaration = 190, - sym__declaration_declarator = 191, - sym_type_definition = 192, - sym__type_definition_type = 193, - sym__type_definition_declarators = 194, - sym__declaration_modifiers = 195, - sym__declaration_specifiers = 196, - sym_linkage_specification = 197, - sym_attribute_specifier = 198, - sym_attribute = 199, - sym_attribute_declaration = 200, - sym_ms_declspec_modifier = 201, - sym_ms_based_modifier = 202, - sym_ms_call_modifier = 203, - sym_ms_unaligned_ptr_modifier = 204, - sym_ms_pointer_modifier = 205, - sym_declaration_list = 206, - sym__declarator = 207, - sym__field_declarator = 208, - sym__type_declarator = 209, - sym__abstract_declarator = 210, - sym_parenthesized_declarator = 211, - sym_parenthesized_field_declarator = 212, - sym_parenthesized_type_declarator = 213, - sym_abstract_parenthesized_declarator = 214, - sym_attributed_declarator = 215, - sym_attributed_field_declarator = 216, - sym_attributed_type_declarator = 217, - sym_pointer_declarator = 218, - sym_pointer_field_declarator = 219, - sym_pointer_type_declarator = 220, - sym_abstract_pointer_declarator = 221, - sym_function_declarator = 222, - sym_function_field_declarator = 223, - sym_function_type_declarator = 224, - sym_abstract_function_declarator = 225, - sym__old_style_function_declarator = 226, - sym_array_declarator = 227, - sym_array_field_declarator = 228, - sym_array_type_declarator = 229, - sym_abstract_array_declarator = 230, - sym_init_declarator = 231, - sym_compound_statement = 232, - sym_storage_class_specifier = 233, - sym_type_qualifier = 234, - sym__type_specifier = 235, - sym_sized_type_specifier = 236, - sym_enum_specifier = 237, - sym_enumerator_list = 238, - sym_struct_specifier = 239, - sym_union_specifier = 240, - sym_field_declaration_list = 241, - sym__field_declaration_list_item = 242, - sym_field_declaration = 243, - sym__field_declaration_declarator = 244, - sym_bitfield_clause = 245, - sym_enumerator = 246, - sym_variadic_parameter = 247, - sym_parameter_list = 248, - sym__old_style_parameter_list = 249, - sym_parameter_declaration = 250, - sym_attributed_statement = 251, - sym_labeled_statement = 252, - sym__top_level_expression_statement = 253, - sym_expression_statement = 254, - sym_if_statement = 255, - sym_else_clause = 256, - sym_switch_statement = 257, - sym_case_statement = 258, - sym_while_statement = 259, - sym_do_statement = 260, - sym_for_statement = 261, - sym__for_statement_body = 262, - sym_return_statement = 263, - sym_break_statement = 264, - sym_continue_statement = 265, - sym_goto_statement = 266, - sym_seh_try_statement = 267, - sym_seh_except_clause = 268, - sym_seh_finally_clause = 269, - sym_seh_leave_statement = 270, - sym__expression = 271, - sym__expression_not_binary = 272, - sym_comma_expression = 273, - sym_conditional_expression = 274, - sym_assignment_expression = 275, - sym_pointer_expression = 276, - sym_unary_expression = 277, - sym_binary_expression = 278, - sym_update_expression = 279, - sym_cast_expression = 280, - sym_type_descriptor = 281, - sym_sizeof_expression = 282, - sym_alignof_expression = 283, - sym_offsetof_expression = 284, - sym_generic_expression = 285, - sym_subscript_expression = 286, - sym_call_expression = 287, - sym_gnu_asm_expression = 288, - sym_gnu_asm_qualifier = 289, - sym_gnu_asm_output_operand_list = 290, - sym_gnu_asm_output_operand = 291, - sym_gnu_asm_input_operand_list = 292, - sym_gnu_asm_input_operand = 293, - sym_gnu_asm_clobber_list = 294, - sym_gnu_asm_goto_list = 295, - sym_argument_list = 296, - sym_field_expression = 297, - sym_compound_literal_expression = 298, - sym_parenthesized_expression = 299, - sym_initializer_list = 300, - sym_initializer_pair = 301, - sym_subscript_designator = 302, - sym_subscript_range_designator = 303, - sym_field_designator = 304, - sym_char_literal = 305, - sym_concatenated_string = 306, - sym_string_literal = 307, - sym_null = 308, - sym__empty_declaration = 309, - sym_macro_type_specifier = 310, - aux_sym_translation_unit_repeat1 = 311, - aux_sym_preproc_params_repeat1 = 312, - aux_sym_preproc_if_repeat1 = 313, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 314, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 315, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 316, - aux_sym_preproc_argument_list_repeat1 = 317, - aux_sym__old_style_function_definition_repeat1 = 318, - aux_sym__declaration_declarator_repeat1 = 319, - aux_sym_type_definition_repeat1 = 320, - aux_sym__type_definition_type_repeat1 = 321, - aux_sym__type_definition_declarators_repeat1 = 322, - aux_sym__declaration_specifiers_repeat1 = 323, - aux_sym_attribute_declaration_repeat1 = 324, - aux_sym_attributed_declarator_repeat1 = 325, - aux_sym_pointer_declarator_repeat1 = 326, - aux_sym_sized_type_specifier_repeat1 = 327, - aux_sym_enumerator_list_repeat1 = 328, - aux_sym__field_declaration_declarator_repeat1 = 329, - aux_sym_parameter_list_repeat1 = 330, - aux_sym__old_style_parameter_list_repeat1 = 331, - aux_sym_case_statement_repeat1 = 332, - aux_sym_generic_expression_repeat1 = 333, - aux_sym_gnu_asm_expression_repeat1 = 334, - aux_sym_gnu_asm_output_operand_list_repeat1 = 335, - aux_sym_gnu_asm_input_operand_list_repeat1 = 336, - aux_sym_gnu_asm_clobber_list_repeat1 = 337, - aux_sym_gnu_asm_goto_list_repeat1 = 338, - aux_sym_argument_list_repeat1 = 339, - aux_sym_initializer_list_repeat1 = 340, - aux_sym_initializer_pair_repeat1 = 341, - aux_sym_char_literal_repeat1 = 342, - aux_sym_concatenated_string_repeat1 = 343, - aux_sym_string_literal_repeat1 = 344, - alias_sym_field_identifier = 345, - alias_sym_statement_identifier = 346, - alias_sym_type_identifier = 347, + anon_sym_alignas = 89, + anon_sym__Alignas = 90, + sym_primitive_type = 91, + anon_sym_enum = 92, + anon_sym_COLON = 93, + anon_sym_struct = 94, + anon_sym_union = 95, + anon_sym_if = 96, + anon_sym_else = 97, + anon_sym_switch = 98, + anon_sym_case = 99, + anon_sym_default = 100, + anon_sym_while = 101, + anon_sym_do = 102, + anon_sym_for = 103, + anon_sym_return = 104, + anon_sym_break = 105, + anon_sym_continue = 106, + anon_sym_goto = 107, + anon_sym___try = 108, + anon_sym___except = 109, + anon_sym___finally = 110, + anon_sym___leave = 111, + anon_sym_QMARK = 112, + anon_sym_STAR_EQ = 113, + anon_sym_SLASH_EQ = 114, + anon_sym_PERCENT_EQ = 115, + anon_sym_PLUS_EQ = 116, + anon_sym_DASH_EQ = 117, + anon_sym_LT_LT_EQ = 118, + anon_sym_GT_GT_EQ = 119, + anon_sym_AMP_EQ = 120, + anon_sym_CARET_EQ = 121, + anon_sym_PIPE_EQ = 122, + anon_sym_DASH_DASH = 123, + anon_sym_PLUS_PLUS = 124, + anon_sym_sizeof = 125, + anon_sym___alignof__ = 126, + anon_sym___alignof = 127, + anon_sym__alignof = 128, + anon_sym_alignof = 129, + anon_sym__Alignof = 130, + anon_sym_offsetof = 131, + anon_sym__Generic = 132, + anon_sym_asm = 133, + anon_sym___asm__ = 134, + anon_sym_DOT = 135, + anon_sym_DASH_GT = 136, + sym_number_literal = 137, + anon_sym_L_SQUOTE = 138, + anon_sym_u_SQUOTE = 139, + anon_sym_U_SQUOTE = 140, + anon_sym_u8_SQUOTE = 141, + anon_sym_SQUOTE = 142, + aux_sym_char_literal_token1 = 143, + anon_sym_L_DQUOTE = 144, + anon_sym_u_DQUOTE = 145, + anon_sym_U_DQUOTE = 146, + anon_sym_u8_DQUOTE = 147, + anon_sym_DQUOTE = 148, + aux_sym_string_literal_token1 = 149, + sym_escape_sequence = 150, + sym_system_lib_string = 151, + sym_true = 152, + sym_false = 153, + anon_sym_NULL = 154, + anon_sym_nullptr = 155, + sym_comment = 156, + sym_translation_unit = 157, + sym__top_level_item = 158, + sym__block_item = 159, + sym_preproc_include = 160, + sym_preproc_def = 161, + sym_preproc_function_def = 162, + sym_preproc_params = 163, + sym_preproc_call = 164, + sym_preproc_if = 165, + sym_preproc_ifdef = 166, + sym_preproc_else = 167, + sym_preproc_elif = 168, + sym_preproc_elifdef = 169, + sym_preproc_if_in_field_declaration_list = 170, + sym_preproc_ifdef_in_field_declaration_list = 171, + sym_preproc_else_in_field_declaration_list = 172, + sym_preproc_elif_in_field_declaration_list = 173, + sym_preproc_elifdef_in_field_declaration_list = 174, + sym_preproc_if_in_enumerator_list = 175, + sym_preproc_ifdef_in_enumerator_list = 176, + sym_preproc_else_in_enumerator_list = 177, + sym_preproc_elif_in_enumerator_list = 178, + sym_preproc_elifdef_in_enumerator_list = 179, + sym_preproc_if_in_enumerator_list_no_comma = 180, + sym_preproc_ifdef_in_enumerator_list_no_comma = 181, + sym_preproc_else_in_enumerator_list_no_comma = 182, + sym_preproc_elif_in_enumerator_list_no_comma = 183, + sym_preproc_elifdef_in_enumerator_list_no_comma = 184, + sym__preproc_expression = 185, + sym_preproc_parenthesized_expression = 186, + sym_preproc_defined = 187, + sym_preproc_unary_expression = 188, + sym_preproc_call_expression = 189, + sym_preproc_argument_list = 190, + sym_preproc_binary_expression = 191, + sym_function_definition = 192, + sym__old_style_function_definition = 193, + sym_declaration = 194, + sym_type_definition = 195, + sym__type_definition_type = 196, + sym__type_definition_declarators = 197, + sym__declaration_modifiers = 198, + sym__declaration_specifiers = 199, + sym_linkage_specification = 200, + sym_attribute_specifier = 201, + sym_attribute = 202, + sym_attribute_declaration = 203, + sym_ms_declspec_modifier = 204, + sym_ms_based_modifier = 205, + sym_ms_call_modifier = 206, + sym_ms_unaligned_ptr_modifier = 207, + sym_ms_pointer_modifier = 208, + sym_declaration_list = 209, + sym__declarator = 210, + sym__declaration_declarator = 211, + sym__field_declarator = 212, + sym__type_declarator = 213, + sym__abstract_declarator = 214, + sym_parenthesized_declarator = 215, + sym_parenthesized_field_declarator = 216, + sym_parenthesized_type_declarator = 217, + sym_abstract_parenthesized_declarator = 218, + sym_attributed_declarator = 219, + sym_attributed_field_declarator = 220, + sym_attributed_type_declarator = 221, + sym_pointer_declarator = 222, + sym_pointer_field_declarator = 223, + sym_pointer_type_declarator = 224, + sym_abstract_pointer_declarator = 225, + sym_function_declarator = 226, + sym__function_declaration_declarator = 227, + sym_function_field_declarator = 228, + sym_function_type_declarator = 229, + sym_abstract_function_declarator = 230, + sym__old_style_function_declarator = 231, + sym_array_declarator = 232, + sym_array_field_declarator = 233, + sym_array_type_declarator = 234, + sym_abstract_array_declarator = 235, + sym_init_declarator = 236, + sym_compound_statement = 237, + sym_storage_class_specifier = 238, + sym_type_qualifier = 239, + sym_alignas_qualifier = 240, + sym_type_specifier = 241, + sym_sized_type_specifier = 242, + sym_enum_specifier = 243, + sym_enumerator_list = 244, + sym_struct_specifier = 245, + sym_union_specifier = 246, + sym_field_declaration_list = 247, + sym__field_declaration_list_item = 248, + sym_field_declaration = 249, + sym__field_declaration_declarator = 250, + sym_bitfield_clause = 251, + sym_enumerator = 252, + sym_variadic_parameter = 253, + sym_parameter_list = 254, + sym__old_style_parameter_list = 255, + sym_parameter_declaration = 256, + sym_attributed_statement = 257, + sym_statement = 258, + sym__top_level_statement = 259, + sym_labeled_statement = 260, + sym__top_level_expression_statement = 261, + sym_expression_statement = 262, + sym_if_statement = 263, + sym_else_clause = 264, + sym_switch_statement = 265, + sym_case_statement = 266, + sym_while_statement = 267, + sym_do_statement = 268, + sym_for_statement = 269, + sym__for_statement_body = 270, + sym_return_statement = 271, + sym_break_statement = 272, + sym_continue_statement = 273, + sym_goto_statement = 274, + sym_seh_try_statement = 275, + sym_seh_except_clause = 276, + sym_seh_finally_clause = 277, + sym_seh_leave_statement = 278, + sym_expression = 279, + sym__string = 280, + sym_comma_expression = 281, + sym_conditional_expression = 282, + sym_assignment_expression = 283, + sym_pointer_expression = 284, + sym_unary_expression = 285, + sym_binary_expression = 286, + sym_update_expression = 287, + sym_cast_expression = 288, + sym_type_descriptor = 289, + sym_sizeof_expression = 290, + sym_alignof_expression = 291, + sym_offsetof_expression = 292, + sym_generic_expression = 293, + sym_subscript_expression = 294, + sym_call_expression = 295, + sym_gnu_asm_expression = 296, + sym_gnu_asm_qualifier = 297, + sym_gnu_asm_output_operand_list = 298, + sym_gnu_asm_output_operand = 299, + sym_gnu_asm_input_operand_list = 300, + sym_gnu_asm_input_operand = 301, + sym_gnu_asm_clobber_list = 302, + sym_gnu_asm_goto_list = 303, + sym_argument_list = 304, + sym_field_expression = 305, + sym_compound_literal_expression = 306, + sym_parenthesized_expression = 307, + sym_initializer_list = 308, + sym_initializer_pair = 309, + sym_subscript_designator = 310, + sym_subscript_range_designator = 311, + sym_field_designator = 312, + sym_char_literal = 313, + sym_concatenated_string = 314, + sym_string_literal = 315, + sym_null = 316, + sym__empty_declaration = 317, + sym_macro_type_specifier = 318, + aux_sym_translation_unit_repeat1 = 319, + aux_sym_preproc_params_repeat1 = 320, + aux_sym_preproc_if_repeat1 = 321, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 322, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 323, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 324, + aux_sym_preproc_argument_list_repeat1 = 325, + aux_sym__old_style_function_definition_repeat1 = 326, + aux_sym_declaration_repeat1 = 327, + aux_sym_type_definition_repeat1 = 328, + aux_sym__type_definition_type_repeat1 = 329, + aux_sym__type_definition_declarators_repeat1 = 330, + aux_sym__declaration_specifiers_repeat1 = 331, + aux_sym_attribute_declaration_repeat1 = 332, + aux_sym_attributed_declarator_repeat1 = 333, + aux_sym_pointer_declarator_repeat1 = 334, + aux_sym_function_declarator_repeat1 = 335, + aux_sym_array_declarator_repeat1 = 336, + aux_sym_sized_type_specifier_repeat1 = 337, + aux_sym_enumerator_list_repeat1 = 338, + aux_sym__field_declaration_declarator_repeat1 = 339, + aux_sym_parameter_list_repeat1 = 340, + aux_sym__old_style_parameter_list_repeat1 = 341, + aux_sym_case_statement_repeat1 = 342, + aux_sym_generic_expression_repeat1 = 343, + aux_sym_gnu_asm_expression_repeat1 = 344, + aux_sym_gnu_asm_output_operand_list_repeat1 = 345, + aux_sym_gnu_asm_input_operand_list_repeat1 = 346, + aux_sym_gnu_asm_clobber_list_repeat1 = 347, + aux_sym_gnu_asm_goto_list_repeat1 = 348, + aux_sym_argument_list_repeat1 = 349, + aux_sym_initializer_list_repeat1 = 350, + aux_sym_initializer_pair_repeat1 = 351, + aux_sym_char_literal_repeat1 = 352, + aux_sym_concatenated_string_repeat1 = 353, + aux_sym_string_literal_repeat1 = 354, + alias_sym_field_identifier = 355, + alias_sym_statement_identifier = 356, + alias_sym_type_identifier = 357, }; static const char * const ts_symbol_names[] = { @@ -445,9 +454,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_long] = "long", [anon_sym_short] = "short", [anon_sym_LBRACK] = "[", + [anon_sym_static] = "static", [anon_sym_RBRACK] = "]", [anon_sym_EQ] = "=", - [anon_sym_static] = "static", [anon_sym_auto] = "auto", [anon_sym_register] = "register", [anon_sym_inline] = "inline", @@ -464,6 +473,8 @@ static const char * const ts_symbol_names[] = { [anon_sym__Atomic] = "_Atomic", [anon_sym__Noreturn] = "_Noreturn", [anon_sym_noreturn] = "noreturn", + [anon_sym_alignas] = "alignas", + [anon_sym__Alignas] = "_Alignas", [sym_primitive_type] = "primitive_type", [anon_sym_enum] = "enum", [anon_sym_COLON] = ":", @@ -531,6 +542,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_nullptr] = "nullptr", [sym_comment] = "comment", [sym_translation_unit] = "translation_unit", + [sym__top_level_item] = "_top_level_item", + [sym__block_item] = "_block_item", [sym_preproc_include] = "preproc_include", [sym_preproc_def] = "preproc_def", [sym_preproc_function_def] = "preproc_function_def", @@ -566,7 +579,6 @@ static const char * const ts_symbol_names[] = { [sym_function_definition] = "function_definition", [sym__old_style_function_definition] = "function_definition", [sym_declaration] = "declaration", - [sym__declaration_declarator] = "_declaration_declarator", [sym_type_definition] = "type_definition", [sym__type_definition_type] = "_type_definition_type", [sym__type_definition_declarators] = "_type_definition_declarators", @@ -583,6 +595,7 @@ static const char * const ts_symbol_names[] = { [sym_ms_pointer_modifier] = "ms_pointer_modifier", [sym_declaration_list] = "declaration_list", [sym__declarator] = "_declarator", + [sym__declaration_declarator] = "_declaration_declarator", [sym__field_declarator] = "_field_declarator", [sym__type_declarator] = "_type_declarator", [sym__abstract_declarator] = "_abstract_declarator", @@ -598,6 +611,7 @@ static const char * const ts_symbol_names[] = { [sym_pointer_type_declarator] = "pointer_declarator", [sym_abstract_pointer_declarator] = "abstract_pointer_declarator", [sym_function_declarator] = "function_declarator", + [sym__function_declaration_declarator] = "function_declarator", [sym_function_field_declarator] = "function_declarator", [sym_function_type_declarator] = "function_declarator", [sym_abstract_function_declarator] = "abstract_function_declarator", @@ -610,7 +624,8 @@ static const char * const ts_symbol_names[] = { [sym_compound_statement] = "compound_statement", [sym_storage_class_specifier] = "storage_class_specifier", [sym_type_qualifier] = "type_qualifier", - [sym__type_specifier] = "_type_specifier", + [sym_alignas_qualifier] = "alignas_qualifier", + [sym_type_specifier] = "type_specifier", [sym_sized_type_specifier] = "sized_type_specifier", [sym_enum_specifier] = "enum_specifier", [sym_enumerator_list] = "enumerator_list", @@ -627,6 +642,8 @@ static const char * const ts_symbol_names[] = { [sym__old_style_parameter_list] = "parameter_list", [sym_parameter_declaration] = "parameter_declaration", [sym_attributed_statement] = "attributed_statement", + [sym_statement] = "statement", + [sym__top_level_statement] = "_top_level_statement", [sym_labeled_statement] = "labeled_statement", [sym__top_level_expression_statement] = "expression_statement", [sym_expression_statement] = "expression_statement", @@ -646,8 +663,8 @@ static const char * const ts_symbol_names[] = { [sym_seh_except_clause] = "seh_except_clause", [sym_seh_finally_clause] = "seh_finally_clause", [sym_seh_leave_statement] = "seh_leave_statement", - [sym__expression] = "_expression", - [sym__expression_not_binary] = "_expression_not_binary", + [sym_expression] = "expression", + [sym__string] = "_string", [sym_comma_expression] = "comma_expression", [sym_conditional_expression] = "conditional_expression", [sym_assignment_expression] = "assignment_expression", @@ -694,7 +711,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1] = "preproc_if_in_enumerator_list_no_comma_repeat1", [aux_sym_preproc_argument_list_repeat1] = "preproc_argument_list_repeat1", [aux_sym__old_style_function_definition_repeat1] = "_old_style_function_definition_repeat1", - [aux_sym__declaration_declarator_repeat1] = "_declaration_declarator_repeat1", + [aux_sym_declaration_repeat1] = "declaration_repeat1", [aux_sym_type_definition_repeat1] = "type_definition_repeat1", [aux_sym__type_definition_type_repeat1] = "_type_definition_type_repeat1", [aux_sym__type_definition_declarators_repeat1] = "_type_definition_declarators_repeat1", @@ -702,6 +719,8 @@ static const char * const ts_symbol_names[] = { [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_array_declarator_repeat1] = "array_declarator_repeat1", [aux_sym_sized_type_specifier_repeat1] = "sized_type_specifier_repeat1", [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", [aux_sym__field_declaration_declarator_repeat1] = "_field_declaration_declarator_repeat1", @@ -796,9 +815,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_long] = anon_sym_long, [anon_sym_short] = anon_sym_short, [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_static] = anon_sym_static, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_static] = anon_sym_static, [anon_sym_auto] = anon_sym_auto, [anon_sym_register] = anon_sym_register, [anon_sym_inline] = anon_sym_inline, @@ -815,6 +834,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym__Atomic] = anon_sym__Atomic, [anon_sym__Noreturn] = anon_sym__Noreturn, [anon_sym_noreturn] = anon_sym_noreturn, + [anon_sym_alignas] = anon_sym_alignas, + [anon_sym__Alignas] = anon_sym__Alignas, [sym_primitive_type] = sym_primitive_type, [anon_sym_enum] = anon_sym_enum, [anon_sym_COLON] = anon_sym_COLON, @@ -882,6 +903,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_nullptr] = anon_sym_nullptr, [sym_comment] = sym_comment, [sym_translation_unit] = sym_translation_unit, + [sym__top_level_item] = sym__top_level_item, + [sym__block_item] = sym__block_item, [sym_preproc_include] = sym_preproc_include, [sym_preproc_def] = sym_preproc_def, [sym_preproc_function_def] = sym_preproc_function_def, @@ -917,7 +940,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_function_definition] = sym_function_definition, [sym__old_style_function_definition] = sym_function_definition, [sym_declaration] = sym_declaration, - [sym__declaration_declarator] = sym__declaration_declarator, [sym_type_definition] = sym_type_definition, [sym__type_definition_type] = sym__type_definition_type, [sym__type_definition_declarators] = sym__type_definition_declarators, @@ -934,6 +956,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_ms_pointer_modifier] = sym_ms_pointer_modifier, [sym_declaration_list] = sym_declaration_list, [sym__declarator] = sym__declarator, + [sym__declaration_declarator] = sym__declaration_declarator, [sym__field_declarator] = sym__field_declarator, [sym__type_declarator] = sym__type_declarator, [sym__abstract_declarator] = sym__abstract_declarator, @@ -949,6 +972,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_pointer_type_declarator] = sym_pointer_declarator, [sym_abstract_pointer_declarator] = sym_abstract_pointer_declarator, [sym_function_declarator] = sym_function_declarator, + [sym__function_declaration_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, @@ -961,7 +985,8 @@ static const TSSymbol ts_symbol_map[] = { [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_alignas_qualifier] = sym_alignas_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, @@ -978,6 +1003,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__old_style_parameter_list] = sym_parameter_list, [sym_parameter_declaration] = sym_parameter_declaration, [sym_attributed_statement] = sym_attributed_statement, + [sym_statement] = sym_statement, + [sym__top_level_statement] = sym__top_level_statement, [sym_labeled_statement] = sym_labeled_statement, [sym__top_level_expression_statement] = sym_expression_statement, [sym_expression_statement] = sym_expression_statement, @@ -997,8 +1024,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_seh_except_clause] = sym_seh_except_clause, [sym_seh_finally_clause] = sym_seh_finally_clause, [sym_seh_leave_statement] = sym_seh_leave_statement, - [sym__expression] = sym__expression, - [sym__expression_not_binary] = sym__expression_not_binary, + [sym_expression] = sym_expression, + [sym__string] = sym__string, [sym_comma_expression] = sym_comma_expression, [sym_conditional_expression] = sym_conditional_expression, [sym_assignment_expression] = sym_assignment_expression, @@ -1045,7 +1072,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1] = aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, [aux_sym_preproc_argument_list_repeat1] = aux_sym_preproc_argument_list_repeat1, [aux_sym__old_style_function_definition_repeat1] = aux_sym__old_style_function_definition_repeat1, - [aux_sym__declaration_declarator_repeat1] = aux_sym__declaration_declarator_repeat1, + [aux_sym_declaration_repeat1] = aux_sym_declaration_repeat1, [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, [aux_sym__type_definition_type_repeat1] = aux_sym__type_definition_type_repeat1, [aux_sym__type_definition_declarators_repeat1] = aux_sym__type_definition_declarators_repeat1, @@ -1053,6 +1080,8 @@ static const TSSymbol ts_symbol_map[] = { [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_array_declarator_repeat1] = aux_sym_array_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_declarator_repeat1] = aux_sym__field_declaration_declarator_repeat1, @@ -1357,15 +1386,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_RBRACK] = { + [anon_sym_static] = { .visible = true, .named = false, }, - [anon_sym_EQ] = { + [anon_sym_RBRACK] = { .visible = true, .named = false, }, - [anon_sym_static] = { + [anon_sym_EQ] = { .visible = true, .named = false, }, @@ -1433,6 +1462,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_alignas] = { + .visible = true, + .named = false, + }, + [anon_sym__Alignas] = { + .visible = true, + .named = false, + }, [sym_primitive_type] = { .visible = true, .named = true, @@ -1701,6 +1738,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__top_level_item] = { + .visible = false, + .named = true, + }, + [sym__block_item] = { + .visible = false, + .named = true, + }, [sym_preproc_include] = { .visible = true, .named = true, @@ -1841,10 +1886,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__declaration_declarator] = { - .visible = false, - .named = true, - }, [sym_type_definition] = { .visible = true, .named = true, @@ -1910,6 +1951,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym__declaration_declarator] = { + .visible = false, + .named = true, + }, [sym__field_declarator] = { .visible = false, .named = true, @@ -1973,6 +2018,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__function_declaration_declarator] = { + .visible = true, + .named = true, + }, [sym_function_field_declarator] = { .visible = true, .named = true, @@ -2021,7 +2070,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__type_specifier] = { + [sym_alignas_qualifier] = { + .visible = true, + .named = true, + }, + [sym_type_specifier] = { .visible = false, .named = true, .supertype = true, @@ -2090,6 +2143,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__top_level_statement] = { + .visible = false, + .named = true, + }, [sym_labeled_statement] = { .visible = true, .named = true, @@ -2166,12 +2228,12 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__expression] = { + [sym_expression] = { .visible = false, .named = true, .supertype = true, }, - [sym__expression_not_binary] = { + [sym__string] = { .visible = false, .named = true, }, @@ -2359,7 +2421,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__declaration_declarator_repeat1] = { + [aux_sym_declaration_repeat1] = { .visible = false, .named = false, }, @@ -2391,6 +2453,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_function_declarator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_array_declarator_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_sized_type_specifier_repeat1] = { .visible = false, .named = false, @@ -2572,38 +2642,38 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [8] = {.index = 9, .length = 1}, [9] = {.index = 10, .length = 1}, [10] = {.index = 3, .length = 1}, - [11] = {.index = 11, .length = 1}, - [12] = {.index = 12, .length = 2}, - [13] = {.index = 14, .length = 2}, - [14] = {.index = 16, .length = 1}, - [15] = {.index = 16, .length = 1}, - [16] = {.index = 17, .length = 1}, + [11] = {.index = 11, .length = 2}, + [12] = {.index = 13, .length = 2}, + [13] = {.index = 15, .length = 2}, + [14] = {.index = 17, .length = 1}, + [15] = {.index = 17, .length = 1}, + [16] = {.index = 18, .length = 1}, [17] = {.index = 8, .length = 1}, - [18] = {.index = 18, .length = 2}, - [19] = {.index = 20, .length = 2}, - [20] = {.index = 22, .length = 1}, - [22] = {.index = 23, .length = 2}, + [18] = {.index = 19, .length = 2}, + [19] = {.index = 21, .length = 2}, + [20] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 1}, [23] = {.index = 25, .length = 2}, - [24] = {.index = 27, .length = 1}, - [25] = {.index = 28, .length = 1}, - [26] = {.index = 29, .length = 2}, + [24] = {.index = 27, .length = 2}, + [25] = {.index = 29, .length = 1}, + [26] = {.index = 30, .length = 1}, [27] = {.index = 31, .length = 2}, - [28] = {.index = 33, .length = 1}, - [29] = {.index = 34, .length = 3}, - [30] = {.index = 37, .length = 1}, - [31] = {.index = 38, .length = 1}, - [32] = {.index = 39, .length = 2}, + [28] = {.index = 33, .length = 2}, + [29] = {.index = 35, .length = 1}, + [30] = {.index = 36, .length = 3}, + [31] = {.index = 39, .length = 1}, + [32] = {.index = 40, .length = 1}, [33] = {.index = 41, .length = 3}, [34] = {.index = 44, .length = 2}, [35] = {.index = 46, .length = 2}, - [36] = {.index = 48, .length = 2}, - [37] = {.index = 50, .length = 5}, - [38] = {.index = 55, .length = 3}, + [36] = {.index = 48, .length = 5}, + [37] = {.index = 53, .length = 3}, + [38] = {.index = 56, .length = 2}, [39] = {.index = 58, .length = 2}, - [40] = {.index = 60, .length = 2}, - [41] = {.index = 62, .length = 1}, - [42] = {.index = 63, .length = 2}, - [43] = {.index = 65, .length = 1}, + [40] = {.index = 60, .length = 1}, + [41] = {.index = 61, .length = 2}, + [42] = {.index = 63, .length = 1}, + [43] = {.index = 64, .length = 2}, [44] = {.index = 66, .length = 2}, [45] = {.index = 68, .length = 2}, [46] = {.index = 70, .length = 2}, @@ -2620,69 +2690,76 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [58] = {.index = 89, .length = 1}, [59] = {.index = 90, .length = 2}, [60] = {.index = 92, .length = 1}, - [61] = {.index = 93, .length = 2}, - [62] = {.index = 95, .length = 3}, - [63] = {.index = 98, .length = 2}, - [64] = {.index = 100, .length = 5}, - [65] = {.index = 105, .length = 3}, - [66] = {.index = 108, .length = 5}, - [67] = {.index = 113, .length = 2}, - [68] = {.index = 115, .length = 2}, - [69] = {.index = 117, .length = 3}, - [70] = {.index = 120, .length = 2}, - [71] = {.index = 122, .length = 2}, - [72] = {.index = 124, .length = 2}, - [73] = {.index = 126, .length = 1}, - [74] = {.index = 127, .length = 2}, - [75] = {.index = 129, .length = 2}, - [76] = {.index = 131, .length = 2}, - [77] = {.index = 133, .length = 3}, - [78] = {.index = 136, .length = 2}, - [79] = {.index = 138, .length = 2}, - [80] = {.index = 140, .length = 1}, - [81] = {.index = 141, .length = 2}, - [82] = {.index = 143, .length = 2}, - [83] = {.index = 145, .length = 4}, - [84] = {.index = 149, .length = 1}, - [85] = {.index = 150, .length = 2}, - [86] = {.index = 152, .length = 1}, - [87] = {.index = 153, .length = 1}, - [88] = {.index = 154, .length = 2}, - [89] = {.index = 156, .length = 2}, - [90] = {.index = 158, .length = 5}, - [91] = {.index = 163, .length = 3}, - [92] = {.index = 166, .length = 2}, - [93] = {.index = 168, .length = 1}, - [95] = {.index = 169, .length = 2}, - [96] = {.index = 171, .length = 2}, - [97] = {.index = 173, .length = 2}, - [98] = {.index = 175, .length = 3}, - [99] = {.index = 178, .length = 2}, - [100] = {.index = 180, .length = 2}, - [101] = {.index = 182, .length = 2}, - [102] = {.index = 184, .length = 2}, - [103] = {.index = 186, .length = 3}, - [104] = {.index = 189, .length = 2}, - [105] = {.index = 191, .length = 1}, - [106] = {.index = 192, .length = 2}, - [107] = {.index = 194, .length = 2}, - [108] = {.index = 194, .length = 2}, - [109] = {.index = 196, .length = 3}, - [110] = {.index = 199, .length = 2}, - [111] = {.index = 201, .length = 1}, - [112] = {.index = 202, .length = 4}, - [113] = {.index = 206, .length = 3}, - [114] = {.index = 209, .length = 2}, - [115] = {.index = 211, .length = 2}, - [116] = {.index = 33, .length = 1}, - [117] = {.index = 213, .length = 5}, - [118] = {.index = 218, .length = 4}, - [119] = {.index = 222, .length = 2}, - [120] = {.index = 224, .length = 2}, - [121] = {.index = 226, .length = 2}, - [122] = {.index = 228, .length = 5}, - [123] = {.index = 233, .length = 2}, - [124] = {.index = 235, .length = 3}, + [61] = {.index = 93, .length = 3}, + [62] = {.index = 96, .length = 3}, + [63] = {.index = 99, .length = 2}, + [64] = {.index = 101, .length = 3}, + [65] = {.index = 104, .length = 2}, + [66] = {.index = 106, .length = 5}, + [67] = {.index = 111, .length = 3}, + [68] = {.index = 114, .length = 5}, + [69] = {.index = 119, .length = 2}, + [70] = {.index = 121, .length = 2}, + [71] = {.index = 123, .length = 3}, + [72] = {.index = 126, .length = 2}, + [73] = {.index = 128, .length = 2}, + [74] = {.index = 130, .length = 1}, + [75] = {.index = 131, .length = 2}, + [76] = {.index = 133, .length = 2}, + [77] = {.index = 135, .length = 2}, + [78] = {.index = 137, .length = 3}, + [79] = {.index = 140, .length = 2}, + [80] = {.index = 142, .length = 2}, + [81] = {.index = 144, .length = 2}, + [82] = {.index = 146, .length = 1}, + [83] = {.index = 147, .length = 2}, + [84] = {.index = 149, .length = 2}, + [85] = {.index = 151, .length = 4}, + [86] = {.index = 155, .length = 1}, + [87] = {.index = 156, .length = 2}, + [88] = {.index = 158, .length = 1}, + [89] = {.index = 159, .length = 1}, + [90] = {.index = 160, .length = 4}, + [91] = {.index = 164, .length = 4}, + [92] = {.index = 168, .length = 2}, + [93] = {.index = 170, .length = 2}, + [94] = {.index = 172, .length = 3}, + [95] = {.index = 175, .length = 5}, + [96] = {.index = 180, .length = 3}, + [97] = {.index = 183, .length = 2}, + [98] = {.index = 185, .length = 1}, + [100] = {.index = 186, .length = 2}, + [101] = {.index = 188, .length = 2}, + [102] = {.index = 190, .length = 2}, + [103] = {.index = 192, .length = 3}, + [104] = {.index = 195, .length = 2}, + [105] = {.index = 197, .length = 2}, + [106] = {.index = 199, .length = 2}, + [107] = {.index = 201, .length = 2}, + [108] = {.index = 203, .length = 3}, + [109] = {.index = 206, .length = 2}, + [110] = {.index = 208, .length = 1}, + [111] = {.index = 209, .length = 5}, + [112] = {.index = 214, .length = 2}, + [113] = {.index = 216, .length = 3}, + [114] = {.index = 219, .length = 2}, + [115] = {.index = 219, .length = 2}, + [116] = {.index = 221, .length = 3}, + [117] = {.index = 224, .length = 2}, + [118] = {.index = 226, .length = 1}, + [119] = {.index = 227, .length = 4}, + [120] = {.index = 231, .length = 3}, + [121] = {.index = 234, .length = 2}, + [122] = {.index = 236, .length = 2}, + [123] = {.index = 35, .length = 1}, + [124] = {.index = 238, .length = 5}, + [125] = {.index = 243, .length = 4}, + [126] = {.index = 247, .length = 2}, + [127] = {.index = 249, .length = 2}, + [128] = {.index = 251, .length = 2}, + [129] = {.index = 253, .length = 5}, + [130] = {.index = 258, .length = 2}, + [131] = {.index = 260, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2706,54 +2783,54 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [10] = {field_value, 1}, [11] = - {field_declarator, 0}, - [12] = + {field_declarator, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + [13] = {field_argument, 0}, {field_operator, 1}, - [14] = + [15] = {field_arguments, 1}, {field_function, 0}, - [16] = - {field_type, 1}, [17] = - {field_path, 1}, + {field_type, 1}, [18] = + {field_path, 1}, + [19] = {field_argument, 1}, {field_directive, 0}, - [20] = + [21] = {field_declarator, 1}, {field_type, 0}, - [22] = - {field_parameters, 0}, [23] = + {field_parameters, 0}, + [24] = + {field_declarator, 0}, + [25] = {field_body, 2}, {field_value, 1}, - [25] = + [27] = {field_body, 2}, {field_name, 1}, - [27] = + [29] = {field_name, 2}, - [28] = + [30] = {field_body, 2}, - [29] = + [31] = {field_condition, 1}, {field_consequence, 2}, - [31] = + [33] = {field_body, 2}, {field_condition, 1}, - [33] = + [35] = {field_label, 1}, - [34] = + [36] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [37] = + [39] = {field_label, 0}, - [38] = + [40] = {field_declarator, 1}, - [39] = - {field_declarator, 1, .inherited = true}, - {field_type, 0, .inherited = true}, [41] = {field_body, 2}, {field_declarator, 1}, @@ -2762,49 +2839,49 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 0}, {field_parameters, 1}, [46] = - {field_declarator, 0}, {field_declarator, 1}, + {field_type, 0, .inherited = true}, [48] = - {field_declarator, 0}, - {field_declarator, 1, .inherited = true}, - [50] = {field_body, 2}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [55] = + [53] = {field_argument, 0}, {field_field, 2}, {field_operator, 1}, - [58] = + [56] = {field_name, 1}, {field_value, 2}, - [60] = + [58] = {field_name, 1}, {field_parameters, 2}, - [62] = + [60] = {field_condition, 1}, - [63] = + [61] = {field_alternative, 2}, {field_name, 1}, - [65] = + [63] = {field_type, 0, .inherited = true}, - [66] = + [64] = {field_declarator, 2}, {field_type, 0}, - [68] = + [66] = {field_left, 0}, {field_right, 2}, - [70] = + [68] = {field_type, 1}, {field_value, 3}, - [72] = + [70] = {field_declarator, 2}, {field_type, 1}, - [74] = + [72] = {field_declarator, 2, .inherited = true}, {field_type, 1, .inherited = true}, + [74] = + {field_declarator, 0}, + {field_declarator, 1, .inherited = true}, [76] = {field_name, 2}, {field_prefix, 0}, @@ -2834,208 +2911,240 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [92] = {field_declarator, 2}, [93] = + {field_body, 3}, + {field_declarator, 2}, + {field_type, 0, .inherited = true}, + [96] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_type, 0, .inherited = true}, + [99] = {field_declarator, 0}, {field_value, 2}, - [95] = - {field_declarator, 0}, + [101] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, - [98] = + {field_type, 0, .inherited = true}, + [104] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [100] = + [106] = {field_body, 3}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [105] = + [111] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [108] = + [114] = {field_body, 3}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [113] = + [119] = {field_argument, 0}, {field_index, 2}, - [115] = + [121] = {field_alternative, 3}, {field_condition, 0}, - [117] = + [123] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [120] = + [126] = {field_alternative, 3}, {field_condition, 1}, - [122] = + [128] = {field_alternative, 3}, {field_name, 1}, - [124] = - {field_declarator, 1}, - {field_type, 0, .inherited = true}, - [126] = + [130] = {field_size, 1}, - [127] = + [131] = {field_declarator, 3}, {field_type, 1}, - [129] = + [133] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [131] = + [135] = {field_name, 0}, {field_value, 2}, - [133] = + [137] = {field_body, 4}, {field_name, 1}, {field_underlying_type, 3}, - [136] = + [140] = + {field_declarator, 1, .inherited = true}, + {field_type, 0, .inherited = true}, + [142] = {field_body, 4}, {field_name, 3}, - [138] = + [144] = {field_body, 1}, {field_condition, 3}, - [140] = + [146] = {field_update, 2}, - [141] = + [147] = {field_initializer, 0}, {field_update, 2}, - [143] = + [149] = {field_condition, 1}, {field_initializer, 0}, - [145] = + [151] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [149] = + [155] = {field_operand, 1}, - [150] = + [156] = {field_assembly_code, 2}, {field_output_operands, 3}, - [152] = + [158] = {field_assembly_code, 3}, - [153] = + [159] = {field_declarator, 3}, - [154] = + [160] = {field_declarator, 1}, {field_declarator, 2}, - [156] = + {field_declarator, 3}, + {field_type, 0, .inherited = true}, + [164] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3, .inherited = true}, + {field_type, 0, .inherited = true}, + [168] = {field_declarator, 0}, {field_size, 2}, - [158] = + [170] = + {field_declarator, 1}, + {field_declarator, 2}, + [172] = + {field_body, 4}, + {field_declarator, 3}, + {field_type, 1, .inherited = true}, + [175] = {field_body, 4}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [163] = + [180] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [166] = + [183] = {field_alternative, 4}, {field_condition, 1}, - [168] = + [185] = {field_size, 2}, - [169] = + [186] = {field_body, 2}, {field_filter, 1}, - [171] = + [188] = {field_declarator, 0}, {field_declarator, 2, .inherited = true}, - [173] = + [190] = {field_condition, 1}, {field_update, 3}, - [175] = + [192] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [178] = + [195] = {field_initializer, 0}, {field_update, 3}, - [180] = + [197] = {field_condition, 2}, {field_initializer, 0}, - [182] = + [199] = {field_member, 4}, {field_type, 2}, - [184] = + [201] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [186] = + [203] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [189] = + [206] = {field_assembly_code, 3}, {field_output_operands, 4}, - [191] = + [208] = {field_declarator, 4}, - [192] = + [209] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3}, + {field_declarator, 4, .inherited = true}, + {field_type, 0, .inherited = true}, + [214] = {field_declarator, 0}, {field_size, 3}, - [194] = + [216] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3}, + [219] = {field_designator, 0}, {field_value, 2}, - [196] = + [221] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [199] = + [224] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [201] = + [226] = {field_register, 1}, - [202] = + [227] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [206] = + [231] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [209] = + [234] = {field_constraint, 0}, {field_value, 2}, - [211] = + [236] = {field_register, 1}, {field_register, 2, .inherited = true}, - [213] = + [238] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [218] = + [243] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [222] = + [247] = {field_end, 3}, {field_start, 1}, - [224] = + [249] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [226] = + [251] = {field_label, 1}, {field_label, 2, .inherited = true}, - [228] = + [253] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [233] = + [258] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [235] = + [260] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -3058,19 +3167,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [21] = { [0] = sym_primitive_type, }, - [23] = { + [24] = { [1] = alias_sym_type_identifier, }, - [24] = { + [25] = { [2] = alias_sym_type_identifier, }, - [28] = { + [29] = { [1] = alias_sym_statement_identifier, }, - [30] = { + [31] = { [0] = alias_sym_statement_identifier, }, - [38] = { + [37] = { [2] = alias_sym_field_identifier, }, [50] = { @@ -3085,19 +3194,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [53] = { [3] = alias_sym_type_identifier, }, - [77] = { + [78] = { [1] = alias_sym_type_identifier, }, - [78] = { + [80] = { [3] = alias_sym_type_identifier, }, - [94] = { + [99] = { [1] = alias_sym_field_identifier, }, - [101] = { + [106] = { [4] = alias_sym_field_identifier, }, - [107] = { + [114] = { [0] = alias_sym_field_identifier, }, }; @@ -3111,97 +3220,97 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, - [5] = 3, - [6] = 2, - [7] = 3, - [8] = 3, - [9] = 2, - [10] = 2, - [11] = 3, - [12] = 12, - [13] = 12, - [14] = 14, - [15] = 12, - [16] = 16, - [17] = 12, - [18] = 18, - [19] = 18, - [20] = 18, - [21] = 18, + [4] = 4, + [5] = 5, + [6] = 4, + [7] = 7, + [8] = 8, + [9] = 8, + [10] = 7, + [11] = 2, + [12] = 4, + [13] = 7, + [14] = 8, + [15] = 8, + [16] = 4, + [17] = 2, + [18] = 2, + [19] = 19, + [20] = 7, + [21] = 21, [22] = 22, [23] = 23, - [24] = 18, + [24] = 24, [25] = 25, - [26] = 12, - [27] = 14, + [26] = 26, + [27] = 23, [28] = 28, [29] = 28, - [30] = 30, - [31] = 31, - [32] = 31, - [33] = 30, - [34] = 30, - [35] = 14, - [36] = 31, - [37] = 37, - [38] = 37, - [39] = 28, - [40] = 30, - [41] = 41, - [42] = 37, - [43] = 37, - [44] = 28, - [45] = 31, - [46] = 37, - [47] = 28, - [48] = 30, - [49] = 14, - [50] = 31, - [51] = 51, - [52] = 52, - [53] = 53, - [54] = 54, - [55] = 55, - [56] = 56, - [57] = 57, - [58] = 58, - [59] = 55, - [60] = 54, - [61] = 56, - [62] = 58, - [63] = 57, - [64] = 58, - [65] = 55, - [66] = 57, - [67] = 57, - [68] = 58, - [69] = 56, - [70] = 57, - [71] = 58, - [72] = 56, - [73] = 56, - [74] = 54, - [75] = 54, - [76] = 55, - [77] = 55, - [78] = 54, - [79] = 55, - [80] = 54, - [81] = 56, - [82] = 58, - [83] = 57, + [30] = 25, + [31] = 22, + [32] = 25, + [33] = 28, + [34] = 24, + [35] = 23, + [36] = 36, + [37] = 24, + [38] = 25, + [39] = 24, + [40] = 22, + [41] = 23, + [42] = 28, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 46, + [51] = 47, + [52] = 47, + [53] = 48, + [54] = 46, + [55] = 49, + [56] = 49, + [57] = 45, + [58] = 45, + [59] = 46, + [60] = 48, + [61] = 47, + [62] = 48, + [63] = 49, + [64] = 45, + [65] = 49, + [66] = 48, + [67] = 46, + [68] = 47, + [69] = 45, + [70] = 70, + [71] = 70, + [72] = 70, + [73] = 70, + [74] = 70, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, [84] = 84, - [85] = 84, - [86] = 84, - [87] = 84, - [88] = 84, - [89] = 84, + [85] = 85, + [86] = 86, + [87] = 87, + [88] = 88, + [89] = 89, [90] = 90, [91] = 91, [92] = 92, [93] = 93, - [94] = 93, + [94] = 94, [95] = 95, [96] = 96, [97] = 97, @@ -3211,14 +3320,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [101] = 101, [102] = 102, [103] = 103, - [104] = 104, - [105] = 100, + [104] = 88, + [105] = 105, [106] = 106, [107] = 107, [108] = 108, [109] = 109, [110] = 110, - [111] = 111, + [111] = 77, [112] = 112, [113] = 113, [114] = 114, @@ -3250,636 +3359,636 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [140] = 140, [141] = 141, [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 148, - [149] = 90, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 98, - [162] = 119, - [163] = 99, - [164] = 93, - [165] = 123, - [166] = 112, - [167] = 115, - [168] = 95, - [169] = 92, - [170] = 96, - [171] = 108, - [172] = 109, - [173] = 116, - [174] = 122, - [175] = 97, - [176] = 110, - [177] = 91, - [178] = 100, - [179] = 125, - [180] = 126, - [181] = 102, - [182] = 127, - [183] = 128, - [184] = 106, - [185] = 111, - [186] = 107, - [187] = 130, - [188] = 124, - [189] = 129, - [190] = 113, - [191] = 131, - [192] = 132, - [193] = 114, - [194] = 133, - [195] = 117, - [196] = 101, - [197] = 120, - [198] = 118, - [199] = 103, - [200] = 121, - [201] = 104, - [202] = 150, - [203] = 139, - [204] = 90, - [205] = 153, - [206] = 159, - [207] = 140, - [208] = 160, - [209] = 144, - [210] = 90, - [211] = 155, - [212] = 142, - [213] = 147, - [214] = 146, - [215] = 135, - [216] = 138, - [217] = 152, - [218] = 137, - [219] = 151, - [220] = 145, - [221] = 156, - [222] = 157, - [223] = 136, - [224] = 158, - [225] = 154, - [226] = 134, - [227] = 148, - [228] = 90, - [229] = 141, - [230] = 143, - [231] = 132, - [232] = 118, - [233] = 109, - [234] = 114, - [235] = 110, - [236] = 113, - [237] = 111, - [238] = 91, - [239] = 121, - [240] = 118, - [241] = 116, - [242] = 119, - [243] = 120, - [244] = 133, - [245] = 99, - [246] = 95, - [247] = 115, - [248] = 112, - [249] = 99, - [250] = 108, - [251] = 92, - [252] = 92, - [253] = 97, - [254] = 98, - [255] = 108, - [256] = 109, - [257] = 110, - [258] = 111, - [259] = 91, - [260] = 131, - [261] = 132, - [262] = 116, - [263] = 99, - [264] = 119, - [265] = 93, + [143] = 75, + [144] = 75, + [145] = 75, + [146] = 87, + [147] = 94, + [148] = 107, + [149] = 108, + [150] = 105, + [151] = 106, + [152] = 106, + [153] = 91, + [154] = 108, + [155] = 91, + [156] = 101, + [157] = 103, + [158] = 96, + [159] = 112, + [160] = 101, + [161] = 89, + [162] = 77, + [163] = 102, + [164] = 110, + [165] = 99, + [166] = 101, + [167] = 78, + [168] = 98, + [169] = 78, + [170] = 79, + [171] = 97, + [172] = 112, + [173] = 80, + [174] = 79, + [175] = 80, + [176] = 81, + [177] = 110, + [178] = 82, + [179] = 89, + [180] = 83, + [181] = 84, + [182] = 94, + [183] = 85, + [184] = 86, + [185] = 113, + [186] = 96, + [187] = 100, + [188] = 102, + [189] = 97, + [190] = 98, + [191] = 99, + [192] = 113, + [193] = 100, + [194] = 76, + [195] = 93, + [196] = 94, + [197] = 86, + [198] = 89, + [199] = 90, + [200] = 97, + [201] = 98, + [202] = 99, + [203] = 88, + [204] = 102, + [205] = 92, + [206] = 95, + [207] = 85, + [208] = 81, + [209] = 82, + [210] = 109, + [211] = 103, + [212] = 109, + [213] = 83, + [214] = 87, + [215] = 95, + [216] = 92, + [217] = 84, + [218] = 105, + [219] = 84, + [220] = 85, + [221] = 107, + [222] = 86, + [223] = 93, + [224] = 103, + [225] = 78, + [226] = 105, + [227] = 110, + [228] = 77, + [229] = 112, + [230] = 107, + [231] = 91, + [232] = 108, + [233] = 106, + [234] = 100, + [235] = 79, + [236] = 96, + [237] = 80, + [238] = 83, + [239] = 82, + [240] = 93, + [241] = 76, + [242] = 90, + [243] = 113, + [244] = 90, + [245] = 88, + [246] = 76, + [247] = 95, + [248] = 92, + [249] = 81, + [250] = 109, + [251] = 87, + [252] = 114, + [253] = 140, + [254] = 116, + [255] = 120, + [256] = 125, + [257] = 136, + [258] = 129, + [259] = 115, + [260] = 130, + [261] = 133, + [262] = 123, + [263] = 132, + [264] = 129, + [265] = 130, [266] = 120, - [267] = 112, - [268] = 115, - [269] = 95, - [270] = 133, - [271] = 96, - [272] = 97, - [273] = 98, - [274] = 100, - [275] = 102, - [276] = 129, - [277] = 122, - [278] = 102, - [279] = 131, - [280] = 129, - [281] = 128, - [282] = 106, - [283] = 127, - [284] = 126, - [285] = 106, - [286] = 107, - [287] = 125, - [288] = 122, - [289] = 107, - [290] = 130, - [291] = 121, - [292] = 117, - [293] = 130, - [294] = 117, - [295] = 104, - [296] = 124, - [297] = 125, - [298] = 126, - [299] = 101, - [300] = 103, - [301] = 114, - [302] = 104, - [303] = 113, - [304] = 304, - [305] = 104, + [267] = 123, + [268] = 125, + [269] = 136, + [270] = 124, + [271] = 140, + [272] = 126, + [273] = 122, + [274] = 121, + [275] = 119, + [276] = 118, + [277] = 128, + [278] = 131, + [279] = 134, + [280] = 137, + [281] = 139, + [282] = 117, + [283] = 135, + [284] = 117, + [285] = 126, + [286] = 142, + [287] = 127, + [288] = 141, + [289] = 122, + [290] = 142, + [291] = 141, + [292] = 132, + [293] = 135, + [294] = 133, + [295] = 114, + [296] = 139, + [297] = 138, + [298] = 127, + [299] = 119, + [300] = 118, + [301] = 137, + [302] = 131, + [303] = 121, + [304] = 128, + [305] = 138, [306] = 124, - [307] = 127, - [308] = 113, - [309] = 114, - [310] = 117, - [311] = 103, - [312] = 118, - [313] = 121, - [314] = 304, - [315] = 123, - [316] = 122, - [317] = 125, - [318] = 126, - [319] = 103, - [320] = 127, - [321] = 128, - [322] = 129, - [323] = 101, - [324] = 123, - [325] = 131, - [326] = 124, - [327] = 132, - [328] = 133, - [329] = 130, - [330] = 120, - [331] = 119, - [332] = 116, - [333] = 107, - [334] = 91, - [335] = 111, - [336] = 110, - [337] = 109, - [338] = 108, - [339] = 106, - [340] = 101, - [341] = 92, - [342] = 128, - [343] = 123, - [344] = 102, - [345] = 96, - [346] = 100, - [347] = 98, - [348] = 97, - [349] = 96, - [350] = 95, - [351] = 115, - [352] = 112, - [353] = 93, - [354] = 139, - [355] = 136, - [356] = 158, - [357] = 150, - [358] = 159, - [359] = 157, - [360] = 155, - [361] = 153, - [362] = 158, - [363] = 142, - [364] = 141, - [365] = 147, - [366] = 146, - [367] = 135, - [368] = 152, - [369] = 151, - [370] = 145, - [371] = 137, - [372] = 134, - [373] = 148, - [374] = 143, - [375] = 138, - [376] = 139, - [377] = 138, - [378] = 137, - [379] = 140, - [380] = 143, - [381] = 136, - [382] = 148, - [383] = 134, - [384] = 145, - [385] = 151, - [386] = 159, - [387] = 152, - [388] = 135, - [389] = 157, - [390] = 156, - [391] = 160, - [392] = 155, - [393] = 141, - [394] = 154, - [395] = 153, - [396] = 142, - [397] = 140, - [398] = 150, - [399] = 147, - [400] = 146, - [401] = 160, - [402] = 144, - [403] = 144, - [404] = 154, - [405] = 156, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 407, - [411] = 154, - [412] = 412, + [307] = 134, + [308] = 116, + [309] = 115, + [310] = 310, + [311] = 119, + [312] = 310, + [313] = 135, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 314, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 315, + [322] = 322, + [323] = 320, + [324] = 322, + [325] = 325, + [326] = 315, + [327] = 320, + [328] = 325, + [329] = 319, + [330] = 318, + [331] = 319, + [332] = 325, + [333] = 320, + [334] = 316, + [335] = 322, + [336] = 315, + [337] = 318, + [338] = 318, + [339] = 316, + [340] = 316, + [341] = 322, + [342] = 318, + [343] = 319, + [344] = 320, + [345] = 319, + [346] = 316, + [347] = 314, + [348] = 315, + [349] = 314, + [350] = 322, + [351] = 325, + [352] = 314, + [353] = 142, + [354] = 133, + [355] = 128, + [356] = 121, + [357] = 132, + [358] = 141, + [359] = 359, + [360] = 114, + [361] = 131, + [362] = 118, + [363] = 363, + [364] = 124, + [365] = 127, + [366] = 136, + [367] = 134, + [368] = 123, + [369] = 139, + [370] = 115, + [371] = 138, + [372] = 137, + [373] = 129, + [374] = 117, + [375] = 125, + [376] = 116, + [377] = 126, + [378] = 130, + [379] = 120, + [380] = 380, + [381] = 310, + [382] = 382, + [383] = 382, + [384] = 382, + [385] = 385, + [386] = 385, + [387] = 382, + [388] = 385, + [389] = 382, + [390] = 385, + [391] = 382, + [392] = 385, + [393] = 385, + [394] = 394, + [395] = 394, + [396] = 396, + [397] = 397, + [398] = 310, + [399] = 310, + [400] = 75, + [401] = 401, + [402] = 401, + [403] = 401, + [404] = 401, + [405] = 405, + [406] = 401, + [407] = 401, + [408] = 401, + [409] = 401, + [410] = 410, + [411] = 411, + [412] = 310, [413] = 413, [414] = 414, [415] = 415, - [416] = 408, - [417] = 415, - [418] = 408, - [419] = 408, - [420] = 415, - [421] = 407, - [422] = 413, - [423] = 414, - [424] = 407, - [425] = 413, - [426] = 414, - [427] = 412, - [428] = 409, - [429] = 406, - [430] = 409, - [431] = 412, - [432] = 415, - [433] = 412, - [434] = 412, - [435] = 304, - [436] = 414, - [437] = 414, - [438] = 412, - [439] = 409, - [440] = 413, - [441] = 406, - [442] = 409, - [443] = 413, - [444] = 415, - [445] = 413, - [446] = 406, - [447] = 409, - [448] = 408, - [449] = 407, - [450] = 407, - [451] = 408, - [452] = 406, - [453] = 414, - [454] = 415, - [455] = 150, - [456] = 134, - [457] = 304, - [458] = 155, - [459] = 136, - [460] = 157, - [461] = 137, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 424, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 429, + [433] = 425, + [434] = 424, + [435] = 435, + [436] = 430, + [437] = 430, + [438] = 429, + [439] = 425, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 444, + [449] = 449, + [450] = 444, + [451] = 451, + [452] = 452, + [453] = 452, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 457, [462] = 462, - [463] = 135, - [464] = 138, - [465] = 139, - [466] = 160, - [467] = 144, - [468] = 140, - [469] = 153, - [470] = 470, - [471] = 145, - [472] = 156, - [473] = 159, - [474] = 143, - [475] = 148, - [476] = 152, - [477] = 141, - [478] = 147, - [479] = 151, - [480] = 146, - [481] = 142, + [463] = 459, + [464] = 464, + [465] = 458, + [466] = 457, + [467] = 467, + [468] = 468, + [469] = 459, + [470] = 464, + [471] = 464, + [472] = 457, + [473] = 473, + [474] = 474, + [475] = 458, + [476] = 457, + [477] = 477, + [478] = 478, + [479] = 458, + [480] = 480, + [481] = 459, [482] = 482, - [483] = 483, - [484] = 482, - [485] = 482, - [486] = 482, - [487] = 483, - [488] = 482, - [489] = 482, - [490] = 483, - [491] = 483, - [492] = 483, - [493] = 482, - [494] = 483, - [495] = 483, - [496] = 482, - [497] = 483, + [483] = 459, + [484] = 457, + [485] = 411, + [486] = 464, + [487] = 459, + [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] = 304, - [501] = 304, - [502] = 304, - [503] = 90, - [504] = 304, + [500] = 499, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, [505] = 505, - [506] = 506, - [507] = 506, - [508] = 506, - [509] = 506, - [510] = 506, - [511] = 506, - [512] = 506, - [513] = 506, - [514] = 506, - [515] = 506, - [516] = 506, + [506] = 505, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 503, + [514] = 514, + [515] = 508, + [516] = 504, [517] = 517, - [518] = 518, + [518] = 503, [519] = 519, [520] = 520, - [521] = 521, - [522] = 522, + [521] = 510, + [522] = 505, [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 528, - [530] = 530, - [531] = 531, - [532] = 530, - [533] = 531, - [534] = 534, + [524] = 511, + [525] = 517, + [526] = 520, + [527] = 508, + [528] = 509, + [529] = 512, + [530] = 514, + [531] = 514, + [532] = 505, + [533] = 533, + [534] = 514, [535] = 535, - [536] = 535, - [537] = 534, - [538] = 538, - [539] = 535, - [540] = 540, - [541] = 535, - [542] = 534, - [543] = 534, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, + [536] = 508, + [537] = 504, + [538] = 504, + [539] = 539, + [540] = 504, + [541] = 501, + [542] = 542, + [543] = 505, + [544] = 542, + [545] = 512, + [546] = 512, + [547] = 509, [548] = 548, - [549] = 547, - [550] = 544, - [551] = 544, - [552] = 552, - [553] = 553, - [554] = 547, - [555] = 544, - [556] = 547, - [557] = 557, - [558] = 557, - [559] = 552, + [549] = 520, + [550] = 517, + [551] = 507, + [552] = 512, + [553] = 535, + [554] = 542, + [555] = 542, + [556] = 514, + [557] = 517, + [558] = 520, + [559] = 520, [560] = 560, - [561] = 561, - [562] = 562, - [563] = 561, - [564] = 564, - [565] = 552, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 552, - [571] = 561, - [572] = 561, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 576, - [578] = 576, - [579] = 579, - [580] = 576, - [581] = 561, - [582] = 582, - [583] = 583, - [584] = 584, + [561] = 517, + [562] = 520, + [563] = 563, + [564] = 517, + [565] = 512, + [566] = 501, + [567] = 510, + [568] = 542, + [569] = 508, + [570] = 501, + [571] = 560, + [572] = 507, + [573] = 523, + [574] = 548, + [575] = 504, + [576] = 535, + [577] = 507, + [578] = 560, + [579] = 501, + [580] = 548, + [581] = 523, + [582] = 503, + [583] = 510, + [584] = 510, [585] = 585, - [586] = 561, - [587] = 576, - [588] = 561, - [589] = 589, - [590] = 590, - [591] = 561, + [586] = 523, + [587] = 587, + [588] = 503, + [589] = 503, + [590] = 548, + [591] = 505, [592] = 592, [593] = 593, - [594] = 594, - [595] = 595, - [596] = 592, + [594] = 501, + [595] = 507, + [596] = 542, [597] = 597, - [598] = 598, - [599] = 599, - [600] = 592, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 592, - [605] = 592, - [606] = 592, - [607] = 607, - [608] = 592, - [609] = 609, - [610] = 592, - [611] = 611, + [598] = 511, + [599] = 508, + [600] = 535, + [601] = 523, + [602] = 560, + [603] = 539, + [604] = 560, + [605] = 535, + [606] = 560, + [607] = 535, + [608] = 507, + [609] = 510, + [610] = 563, + [611] = 548, [612] = 612, - [613] = 611, - [614] = 614, - [615] = 615, + [613] = 613, + [614] = 523, + [615] = 548, [616] = 616, [617] = 617, [618] = 618, - [619] = 614, + [619] = 619, [620] = 620, [621] = 621, [622] = 622, [623] = 623, [624] = 624, - [625] = 624, + [625] = 625, [626] = 626, - [627] = 618, - [628] = 617, + [627] = 627, + [628] = 628, [629] = 629, [630] = 630, [631] = 631, [632] = 632, - [633] = 617, + [633] = 633, [634] = 634, [635] = 635, - [636] = 614, - [637] = 620, - [638] = 621, - [639] = 622, - [640] = 623, - [641] = 624, - [642] = 622, - [643] = 517, - [644] = 621, - [645] = 620, - [646] = 614, - [647] = 631, - [648] = 618, - [649] = 617, - [650] = 634, - [651] = 631, - [652] = 626, + [636] = 636, + [637] = 636, + [638] = 638, + [639] = 636, + [640] = 633, + [641] = 636, + [642] = 633, + [643] = 635, + [644] = 638, + [645] = 635, + [646] = 646, + [647] = 635, + [648] = 638, + [649] = 638, + [650] = 633, + [651] = 651, + [652] = 652, [653] = 653, [654] = 654, - [655] = 615, - [656] = 618, - [657] = 653, + [655] = 654, + [656] = 396, + [657] = 657, [658] = 658, - [659] = 632, - [660] = 617, - [661] = 654, + [659] = 659, + [660] = 397, + [661] = 661, [662] = 662, [663] = 663, - [664] = 654, - [665] = 634, - [666] = 615, - [667] = 654, - [668] = 653, - [669] = 626, - [670] = 626, - [671] = 618, - [672] = 663, - [673] = 623, - [674] = 632, - [675] = 615, - [676] = 663, - [677] = 622, - [678] = 620, - [679] = 679, - [680] = 653, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 659, + [680] = 680, [681] = 681, - [682] = 663, - [683] = 654, - [684] = 662, - [685] = 621, - [686] = 615, - [687] = 632, - [688] = 626, - [689] = 663, + [682] = 682, + [683] = 619, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 689, [690] = 690, - [691] = 691, - [692] = 658, - [693] = 624, - [694] = 623, - [695] = 690, - [696] = 622, - [697] = 621, - [698] = 626, - [699] = 620, - [700] = 614, - [701] = 618, - [702] = 617, - [703] = 654, - [704] = 631, - [705] = 634, - [706] = 615, - [707] = 623, - [708] = 631, - [709] = 624, - [710] = 710, - [711] = 658, - [712] = 653, - [713] = 654, - [714] = 662, - [715] = 632, - [716] = 631, - [717] = 626, - [718] = 690, - [719] = 653, - [720] = 632, - [721] = 632, - [722] = 634, - [723] = 634, - [724] = 634, - [725] = 663, - [726] = 631, - [727] = 615, - [728] = 631, - [729] = 634, - [730] = 617, - [731] = 618, - [732] = 614, - [733] = 620, - [734] = 621, - [735] = 622, - [736] = 623, - [737] = 624, + [691] = 687, + [692] = 678, + [693] = 678, + [694] = 687, + [695] = 695, + [696] = 678, + [697] = 687, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 619, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 699, + [708] = 700, + [709] = 709, + [710] = 396, + [711] = 397, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 720, + [726] = 726, + [727] = 720, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 720, + [732] = 732, + [733] = 720, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 737, [738] = 738, - [739] = 658, - [740] = 624, - [741] = 623, + [739] = 619, + [740] = 740, + [741] = 741, [742] = 742, - [743] = 654, + [743] = 743, [744] = 744, - [745] = 622, - [746] = 630, - [747] = 621, - [748] = 635, - [749] = 632, - [750] = 617, - [751] = 618, - [752] = 742, - [753] = 662, - [754] = 653, - [755] = 614, - [756] = 615, - [757] = 626, - [758] = 620, - [759] = 614, - [760] = 679, - [761] = 620, - [762] = 624, - [763] = 621, - [764] = 623, - [765] = 653, - [766] = 622, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 749, + [750] = 750, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 766, [767] = 767, - [768] = 767, + [768] = 768, [769] = 769, - [770] = 767, - [771] = 767, - [772] = 767, + [770] = 770, + [771] = 771, + [772] = 772, [773] = 773, [774] = 774, [775] = 775, @@ -3891,304 +4000,304 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [781] = 781, [782] = 782, [783] = 783, - [784] = 784, + [784] = 760, [785] = 785, [786] = 786, - [787] = 787, - [788] = 788, - [789] = 499, - [790] = 498, - [791] = 791, - [792] = 791, - [793] = 793, + [787] = 785, + [788] = 117, + [789] = 785, + [790] = 135, + [791] = 785, + [792] = 132, + [793] = 668, [794] = 794, [795] = 795, [796] = 796, - [797] = 797, + [797] = 745, [798] = 798, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 794, - [805] = 803, + [799] = 138, + [800] = 754, + [801] = 748, + [802] = 778, + [803] = 119, + [804] = 804, + [805] = 116, [806] = 806, - [807] = 793, + [807] = 807, [808] = 808, - [809] = 809, + [809] = 757, [810] = 810, - [811] = 811, - [812] = 794, - [813] = 793, - [814] = 803, - [815] = 815, - [816] = 801, - [817] = 801, - [818] = 794, + [811] = 758, + [812] = 765, + [813] = 766, + [814] = 770, + [815] = 775, + [816] = 816, + [817] = 817, + [818] = 776, [819] = 819, - [820] = 820, - [821] = 793, + [820] = 668, + [821] = 821, [822] = 822, - [823] = 793, + [823] = 823, [824] = 824, - [825] = 801, - [826] = 803, - [827] = 803, - [828] = 801, - [829] = 794, - [830] = 830, - [831] = 831, + [825] = 825, + [826] = 621, + [827] = 620, + [828] = 798, + [829] = 796, + [830] = 686, + [831] = 754, [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 775, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 769, - [846] = 773, - [847] = 774, - [848] = 775, - [849] = 776, - [850] = 775, - [851] = 775, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 853, - [856] = 854, - [857] = 778, - [858] = 777, - [859] = 853, - [860] = 854, - [861] = 853, - [862] = 854, - [863] = 853, - [864] = 854, - [865] = 865, - [866] = 865, - [867] = 867, - [868] = 865, - [869] = 865, - [870] = 870, - [871] = 865, - [872] = 872, - [873] = 873, - [874] = 865, - [875] = 875, - [876] = 876, - [877] = 877, + [833] = 138, + [834] = 116, + [835] = 135, + [836] = 132, + [837] = 745, + [838] = 680, + [839] = 778, + [840] = 748, + [841] = 685, + [842] = 776, + [843] = 775, + [844] = 119, + [845] = 770, + [846] = 766, + [847] = 798, + [848] = 765, + [849] = 760, + [850] = 758, + [851] = 817, + [852] = 117, + [853] = 816, + [854] = 786, + [855] = 808, + [856] = 138, + [857] = 810, + [858] = 808, + [859] = 807, + [860] = 860, + [861] = 806, + [862] = 804, + [863] = 135, + [864] = 832, + [865] = 832, + [866] = 832, + [867] = 795, + [868] = 757, + [869] = 794, + [870] = 695, + [871] = 689, + [872] = 796, + [873] = 117, + [874] = 807, + [875] = 132, + [876] = 806, + [877] = 116, [878] = 878, - [879] = 879, - [880] = 775, - [881] = 881, - [882] = 882, - [883] = 883, + [879] = 810, + [880] = 816, + [881] = 795, + [882] = 119, + [883] = 786, [884] = 884, - [885] = 885, - [886] = 886, - [887] = 887, - [888] = 887, - [889] = 886, - [890] = 836, - [891] = 876, - [892] = 882, - [893] = 875, - [894] = 884, - [895] = 877, - [896] = 878, - [897] = 879, - [898] = 881, + [885] = 817, + [886] = 794, + [887] = 804, + [888] = 684, + [889] = 688, + [890] = 682, + [891] = 668, + [892] = 690, + [893] = 681, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, [899] = 899, - [900] = 885, - [901] = 901, - [902] = 833, - [903] = 883, - [904] = 839, - [905] = 841, - [906] = 837, - [907] = 886, - [908] = 842, - [909] = 875, - [910] = 901, - [911] = 877, - [912] = 843, - [913] = 876, - [914] = 832, - [915] = 831, - [916] = 878, - [917] = 879, - [918] = 881, - [919] = 882, - [920] = 884, - [921] = 835, - [922] = 885, - [923] = 887, - [924] = 883, - [925] = 780, - [926] = 798, - [927] = 799, - [928] = 820, - [929] = 824, - [930] = 930, + [900] = 900, + [901] = 98, + [902] = 97, + [903] = 100, + [904] = 99, + [905] = 78, + [906] = 101, + [907] = 113, + [908] = 79, + [909] = 909, + [910] = 910, + [911] = 80, + [912] = 94, + [913] = 100, + [914] = 914, + [915] = 113, + [916] = 99, + [917] = 98, + [918] = 97, + [919] = 919, + [920] = 94, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 101, + [926] = 926, + [927] = 926, + [928] = 78, + [929] = 79, + [930] = 926, [931] = 931, - [932] = 806, - [933] = 815, + [932] = 80, + [933] = 926, [934] = 934, [935] = 935, - [936] = 936, - [937] = 784, - [938] = 779, + [936] = 754, + [937] = 937, + [938] = 938, [939] = 939, - [940] = 800, - [941] = 819, - [942] = 942, - [943] = 808, - [944] = 788, - [945] = 783, - [946] = 787, - [947] = 785, - [948] = 811, - [949] = 781, - [950] = 160, - [951] = 782, - [952] = 901, - [953] = 802, - [954] = 795, - [955] = 140, - [956] = 786, - [957] = 796, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 791, - [962] = 150, - [963] = 830, - [964] = 810, - [965] = 809, - [966] = 966, - [967] = 156, + [940] = 757, + [941] = 745, + [942] = 748, + [943] = 943, + [944] = 760, + [945] = 776, + [946] = 778, + [947] = 775, + [948] = 770, + [949] = 758, + [950] = 766, + [951] = 765, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 778, + [956] = 776, + [957] = 758, + [958] = 766, + [959] = 754, + [960] = 765, + [961] = 745, + [962] = 962, + [963] = 748, + [964] = 757, + [965] = 770, + [966] = 775, + [967] = 760, [968] = 968, - [969] = 154, - [970] = 144, + [969] = 969, + [970] = 970, [971] = 971, - [972] = 876, - [973] = 882, - [974] = 934, - [975] = 975, + [972] = 971, + [973] = 973, + [974] = 971, + [975] = 971, [976] = 976, - [977] = 930, - [978] = 150, - [979] = 156, - [980] = 154, - [981] = 140, - [982] = 931, - [983] = 886, - [984] = 144, - [985] = 835, + [977] = 976, + [978] = 976, + [979] = 976, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, [986] = 986, - [987] = 883, + [987] = 987, [988] = 988, - [989] = 885, - [990] = 881, - [991] = 879, - [992] = 878, - [993] = 877, - [994] = 837, - [995] = 875, + [989] = 989, + [990] = 983, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 995, [996] = 996, - [997] = 884, - [998] = 968, - [999] = 831, - [1000] = 832, - [1001] = 887, - [1002] = 842, - [1003] = 160, - [1004] = 966, - [1005] = 843, - [1006] = 960, + [997] = 995, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 998, + [1002] = 1002, + [1003] = 825, + [1004] = 1004, + [1005] = 1005, + [1006] = 754, [1007] = 1007, [1008] = 1008, - [1009] = 935, - [1010] = 936, - [1011] = 939, - [1012] = 873, - [1013] = 959, - [1014] = 1014, - [1015] = 942, - [1016] = 958, - [1017] = 1017, - [1018] = 498, - [1019] = 777, - [1020] = 901, - [1021] = 778, - [1022] = 499, - [1023] = 934, + [1009] = 819, + [1010] = 1010, + [1011] = 1011, + [1012] = 778, + [1013] = 1013, + [1014] = 1004, + [1015] = 1015, + [1016] = 758, + [1017] = 1013, + [1018] = 1018, + [1019] = 1004, + [1020] = 1005, + [1021] = 1021, + [1022] = 1022, + [1023] = 1005, [1024] = 1024, - [1025] = 958, - [1026] = 1026, - [1027] = 959, - [1028] = 930, - [1029] = 140, - [1030] = 160, - [1031] = 144, - [1032] = 154, - [1033] = 156, - [1034] = 150, - [1035] = 931, - [1036] = 934, - [1037] = 1037, - [1038] = 942, + [1025] = 1025, + [1026] = 770, + [1027] = 1027, + [1028] = 1028, + [1029] = 1004, + [1030] = 760, + [1031] = 1031, + [1032] = 1032, + [1033] = 1013, + [1034] = 1013, + [1035] = 1005, + [1036] = 939, + [1037] = 765, + [1038] = 1038, [1039] = 1039, - [1040] = 930, - [1041] = 931, - [1042] = 968, - [1043] = 966, - [1044] = 959, - [1045] = 958, - [1046] = 1024, - [1047] = 939, - [1048] = 936, - [1049] = 935, - [1050] = 140, - [1051] = 960, - [1052] = 160, - [1053] = 144, + [1040] = 776, + [1041] = 1005, + [1042] = 766, + [1043] = 745, + [1044] = 1021, + [1045] = 757, + [1046] = 1005, + [1047] = 1047, + [1048] = 775, + [1049] = 1049, + [1050] = 748, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, [1054] = 1054, - [1055] = 942, + [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 960, - [1059] = 154, - [1060] = 156, - [1061] = 935, + [1058] = 1058, + [1059] = 1059, + [1060] = 1051, + [1061] = 1061, [1062] = 1062, - [1063] = 968, + [1063] = 1063, [1064] = 1064, - [1065] = 1024, - [1066] = 1066, - [1067] = 936, + [1065] = 1057, + [1066] = 1057, + [1067] = 1067, [1068] = 1068, - [1069] = 1024, + [1069] = 1057, [1070] = 1070, - [1071] = 1024, - [1072] = 966, + [1071] = 1057, + [1072] = 1072, [1073] = 1073, [1074] = 1074, - [1075] = 939, - [1076] = 150, + [1075] = 1075, + [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, + [1079] = 860, + [1080] = 884, + [1081] = 878, [1082] = 1082, [1083] = 1083, [1084] = 1084, @@ -4197,8 +4306,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 1090, - [1091] = 1091, + [1090] = 750, + [1091] = 773, [1092] = 1092, [1093] = 1093, [1094] = 1094, @@ -4206,216 +4315,216 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1096] = 1096, [1097] = 1097, [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, + [1099] = 1098, + [1100] = 1098, + [1101] = 1098, [1102] = 1102, [1103] = 1103, - [1104] = 1104, - [1105] = 1105, + [1104] = 755, + [1105] = 744, [1106] = 1106, - [1107] = 1107, + [1107] = 1103, [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, + [1109] = 1103, + [1110] = 1108, + [1111] = 1103, [1112] = 1112, - [1113] = 123, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 1123, - [1126] = 1126, - [1127] = 1123, - [1128] = 1123, - [1129] = 1123, - [1130] = 877, - [1131] = 878, - [1132] = 879, - [1133] = 885, - [1134] = 881, - [1135] = 883, - [1136] = 886, - [1137] = 882, - [1138] = 884, + [1113] = 1108, + [1114] = 750, + [1115] = 1103, + [1116] = 1102, + [1117] = 1097, + [1118] = 1106, + [1119] = 1103, + [1120] = 1106, + [1121] = 773, + [1122] = 751, + [1123] = 752, + [1124] = 782, + [1125] = 1106, + [1126] = 783, + [1127] = 774, + [1128] = 769, + [1129] = 1102, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, [1139] = 1139, - [1140] = 887, - [1141] = 875, - [1142] = 876, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, [1143] = 1143, [1144] = 1144, [1145] = 1145, - [1146] = 1144, - [1147] = 886, - [1148] = 883, - [1149] = 887, - [1150] = 885, - [1151] = 1144, - [1152] = 881, - [1153] = 879, - [1154] = 1144, - [1155] = 878, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, [1156] = 1156, - [1157] = 877, - [1158] = 123, - [1159] = 875, - [1160] = 876, - [1161] = 1144, - [1162] = 884, - [1163] = 882, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1156, + [1163] = 1163, [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 887, - [1168] = 886, - [1169] = 1143, - [1170] = 1170, - [1171] = 876, - [1172] = 882, - [1173] = 875, + [1165] = 1163, + [1166] = 1159, + [1167] = 1167, + [1168] = 1155, + [1169] = 1154, + [1170] = 1149, + [1171] = 1153, + [1172] = 1167, + [1173] = 1173, [1174] = 1174, - [1175] = 877, - [1176] = 878, - [1177] = 879, - [1178] = 881, - [1179] = 885, - [1180] = 1180, - [1181] = 884, - [1182] = 883, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, + [1175] = 1175, + [1176] = 1164, + [1177] = 1152, + [1178] = 1151, + [1179] = 1147, + [1180] = 1164, + [1181] = 1142, + [1182] = 1148, + [1183] = 675, + [1184] = 1148, + [1185] = 1148, + [1186] = 1135, + [1187] = 1136, + [1188] = 991, + [1189] = 984, [1190] = 1190, - [1191] = 1191, + [1191] = 1145, [1192] = 1192, [1193] = 1193, [1194] = 1194, - [1195] = 1192, - [1196] = 1194, - [1197] = 1193, + [1195] = 1173, + [1196] = 1138, + [1197] = 1144, [1198] = 1198, - [1199] = 1199, - [1200] = 1191, - [1201] = 883, - [1202] = 875, + [1199] = 1143, + [1200] = 675, + [1201] = 1140, + [1202] = 1202, [1203] = 1203, - [1204] = 1204, - [1205] = 1204, - [1206] = 878, - [1207] = 879, + [1204] = 1194, + [1205] = 981, + [1206] = 1206, + [1207] = 1161, [1208] = 1208, - [1209] = 881, - [1210] = 1210, + [1209] = 1134, + [1210] = 1206, [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 885, - [1215] = 886, - [1216] = 1211, - [1217] = 1217, - [1218] = 882, - [1219] = 1212, - [1220] = 877, - [1221] = 1221, - [1222] = 1222, + [1212] = 1150, + [1213] = 986, + [1214] = 819, + [1215] = 1194, + [1216] = 1206, + [1217] = 1206, + [1218] = 1211, + [1219] = 1211, + [1220] = 1132, + [1221] = 1141, + [1222] = 1133, [1223] = 1203, - [1224] = 1143, - [1225] = 1217, - [1226] = 1221, - [1227] = 1204, - [1228] = 1228, - [1229] = 1204, - [1230] = 1221, + [1224] = 1224, + [1225] = 1211, + [1226] = 1226, + [1227] = 1226, + [1228] = 1226, + [1229] = 1226, + [1230] = 1230, [1231] = 1231, - [1232] = 1211, - [1233] = 1217, - [1234] = 1231, - [1235] = 1235, - [1236] = 876, - [1237] = 1237, - [1238] = 1217, - [1239] = 1239, - [1240] = 1240, - [1241] = 1212, - [1242] = 1213, - [1243] = 1217, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1233, + [1236] = 1233, + [1237] = 1233, + [1238] = 1234, + [1239] = 1234, + [1240] = 1234, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, [1244] = 1244, [1245] = 1245, - [1246] = 1212, - [1247] = 1211, + [1246] = 1246, + [1247] = 1247, [1248] = 1248, - [1249] = 884, + [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1204, - [1253] = 1253, - [1254] = 1211, - [1255] = 1212, - [1256] = 1256, + [1252] = 1252, + [1253] = 1247, + [1254] = 1254, + [1255] = 1255, + [1256] = 1247, [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1260, - [1261] = 887, + [1260] = 1258, + [1261] = 1261, [1262] = 1262, [1263] = 1263, [1264] = 1264, [1265] = 1265, [1266] = 1266, - [1267] = 1267, - [1268] = 1267, - [1269] = 1269, + [1267] = 1266, + [1268] = 1266, + [1269] = 1266, [1270] = 1270, - [1271] = 1271, - [1272] = 1267, + [1271] = 1258, + [1272] = 1272, [1273] = 1273, - [1274] = 1271, - [1275] = 1275, + [1274] = 1258, + [1275] = 1258, [1276] = 1276, - [1277] = 1267, + [1277] = 1258, [1278] = 1278, [1279] = 1279, [1280] = 1280, [1281] = 1281, - [1282] = 1271, - [1283] = 1283, - [1284] = 1267, - [1285] = 1271, + [1282] = 1282, + [1283] = 1281, + [1284] = 1284, + [1285] = 1285, [1286] = 1286, [1287] = 1287, [1288] = 1288, - [1289] = 1267, - [1290] = 1263, + [1289] = 1289, + [1290] = 1290, [1291] = 1291, - [1292] = 1267, + [1292] = 1292, [1293] = 1293, - [1294] = 1270, - [1295] = 1271, - [1296] = 852, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, [1297] = 1297, - [1298] = 1271, - [1299] = 1267, - [1300] = 1291, - [1301] = 1126, + [1298] = 1281, + [1299] = 1281, + [1300] = 1300, + [1301] = 1301, [1302] = 1302, [1303] = 1303, - [1304] = 1139, + [1304] = 1304, [1305] = 1305, - [1306] = 1180, - [1307] = 1166, - [1308] = 1170, + [1306] = 1306, + [1307] = 1307, + [1308] = 1308, [1309] = 1309, [1310] = 1310, [1311] = 1311, @@ -4424,334 +4533,334 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1314] = 1314, [1315] = 1315, [1316] = 1316, - [1317] = 1090, + [1317] = 1317, [1318] = 1318, - [1319] = 1319, + [1319] = 1318, [1320] = 1320, [1321] = 1321, [1322] = 1322, [1323] = 1323, - [1324] = 1324, - [1325] = 1080, - [1326] = 1326, + [1324] = 1318, + [1325] = 1325, + [1326] = 1318, [1327] = 1327, - [1328] = 1327, - [1329] = 1326, - [1330] = 1327, - [1331] = 1324, - [1332] = 1326, - [1333] = 1333, + [1328] = 1328, + [1329] = 1329, + [1330] = 1330, + [1331] = 1329, + [1332] = 1330, + [1333] = 1329, [1334] = 1334, - [1335] = 806, - [1336] = 1336, + [1335] = 1334, + [1336] = 1329, [1337] = 1337, [1338] = 1338, - [1339] = 1339, + [1339] = 1334, [1340] = 1340, - [1341] = 1337, - [1342] = 1338, - [1343] = 1343, - [1344] = 1336, + [1341] = 1341, + [1342] = 1342, + [1343] = 1330, + [1344] = 1330, [1345] = 1345, - [1346] = 1346, - [1347] = 1339, + [1346] = 1334, + [1347] = 1347, [1348] = 1348, [1349] = 1349, [1350] = 1350, - [1351] = 1351, + [1351] = 1348, [1352] = 1352, [1353] = 1353, [1354] = 1354, [1355] = 1355, - [1356] = 1356, + [1356] = 1355, [1357] = 1357, [1358] = 1348, - [1359] = 1351, + [1359] = 1359, [1360] = 1360, - [1361] = 1356, + [1361] = 1361, [1362] = 1350, - [1363] = 1337, + [1363] = 1363, [1364] = 1364, - [1365] = 1365, - [1366] = 1355, + [1365] = 1348, + [1366] = 1350, [1367] = 1367, [1368] = 1368, [1369] = 1369, [1370] = 1370, - [1371] = 1371, + [1371] = 1355, [1372] = 1372, - [1373] = 1373, - [1374] = 1374, + [1373] = 1355, + [1374] = 1350, [1375] = 1375, [1376] = 1376, [1377] = 1377, [1378] = 1378, - [1379] = 1357, - [1380] = 1333, - [1381] = 1360, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, [1386] = 1386, [1387] = 1387, - [1388] = 1350, + [1388] = 1388, [1389] = 1389, - [1390] = 1352, + [1390] = 1390, [1391] = 1391, [1392] = 1392, - [1393] = 1337, - [1394] = 1337, + [1393] = 1393, + [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1350, - [1398] = 1346, - [1399] = 1354, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, [1400] = 1400, - [1401] = 1401, - [1402] = 1090, + [1401] = 1400, + [1402] = 1402, [1403] = 1403, - [1404] = 1085, - [1405] = 1367, + [1404] = 1404, + [1405] = 1405, [1406] = 1406, - [1407] = 1368, - [1408] = 1371, - [1409] = 1403, - [1410] = 1410, - [1411] = 1400, - [1412] = 1392, - [1413] = 1372, - [1414] = 1374, - [1415] = 1375, - [1416] = 1334, - [1417] = 1376, + [1407] = 1407, + [1408] = 1408, + [1409] = 1409, + [1410] = 1400, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, [1418] = 1418, - [1419] = 1109, - [1420] = 1377, + [1419] = 1419, + [1420] = 1420, [1421] = 1400, - [1422] = 1378, - [1423] = 1423, - [1424] = 1424, + [1422] = 1422, + [1423] = 1418, + [1424] = 1418, [1425] = 1425, - [1426] = 1365, - [1427] = 1364, - [1428] = 1369, - [1429] = 1079, - [1430] = 806, - [1431] = 1410, - [1432] = 1400, - [1433] = 1089, - [1434] = 1107, - [1435] = 1396, + [1426] = 1426, + [1427] = 1418, + [1428] = 1400, + [1429] = 1418, + [1430] = 1430, + [1431] = 1400, + [1432] = 1432, + [1433] = 1433, + [1434] = 1418, + [1435] = 1435, [1436] = 1436, - [1437] = 1094, - [1438] = 1400, - [1439] = 1403, - [1440] = 1093, - [1441] = 1092, - [1442] = 1080, - [1443] = 1403, - [1444] = 1382, - [1445] = 1383, + [1437] = 1437, + [1438] = 1438, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, [1446] = 1446, [1447] = 1447, - [1448] = 1447, - [1449] = 1447, - [1450] = 1447, - [1451] = 1447, - [1452] = 1446, - [1453] = 1446, - [1454] = 1126, - [1455] = 1446, - [1456] = 1446, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1456, [1457] = 1457, - [1458] = 1457, - [1459] = 1457, + [1458] = 1458, + [1459] = 1459, [1460] = 1457, - [1461] = 1457, + [1461] = 1461, [1462] = 1462, [1463] = 1463, [1464] = 1464, - [1465] = 1464, + [1465] = 1465, [1466] = 1466, - [1467] = 1464, - [1468] = 1466, - [1469] = 1466, - [1470] = 1466, - [1471] = 1464, - [1472] = 1464, + [1467] = 1467, + [1468] = 1468, + [1469] = 1461, + [1470] = 1457, + [1471] = 1471, + [1472] = 1465, [1473] = 1473, [1474] = 1474, - [1475] = 1474, - [1476] = 1474, - [1477] = 1474, - [1478] = 1474, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, + [1475] = 1462, + [1476] = 1459, + [1477] = 1477, + [1478] = 1478, + [1479] = 1473, + [1480] = 1459, + [1481] = 1462, [1482] = 1482, - [1483] = 1483, + [1483] = 1461, [1484] = 1484, [1485] = 1485, - [1486] = 1482, - [1487] = 1487, - [1488] = 1484, - [1489] = 1482, + [1486] = 1486, + [1487] = 1457, + [1488] = 1459, + [1489] = 1489, [1490] = 1490, - [1491] = 1482, + [1491] = 1462, [1492] = 1492, - [1493] = 1482, - [1494] = 1494, + [1493] = 1493, + [1494] = 1465, [1495] = 1495, - [1496] = 1484, - [1497] = 1484, - [1498] = 1498, + [1496] = 1465, + [1497] = 1473, + [1498] = 1461, [1499] = 1499, [1500] = 1500, - [1501] = 1484, - [1502] = 1482, - [1503] = 1482, + [1501] = 1473, + [1502] = 1471, + [1503] = 1471, [1504] = 1504, - [1505] = 1504, - [1506] = 1506, - [1507] = 1504, - [1508] = 1504, - [1509] = 1509, - [1510] = 1510, - [1511] = 1504, + [1505] = 1505, + [1506] = 1473, + [1507] = 1507, + [1508] = 1490, + [1509] = 1490, + [1510] = 1489, + [1511] = 1511, [1512] = 1512, [1513] = 1513, - [1514] = 1514, + [1514] = 1473, [1515] = 1515, [1516] = 1516, [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1520, + [1518] = 1459, + [1519] = 1473, + [1520] = 1489, [1521] = 1521, - [1522] = 1517, + [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, [1526] = 1526, - [1527] = 1517, + [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1517, - [1533] = 1517, + [1532] = 1532, + [1533] = 1533, [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1538, + [1538] = 1529, [1539] = 1539, [1540] = 1540, [1541] = 1541, [1542] = 1542, [1543] = 1543, [1544] = 1544, - [1545] = 1545, + [1545] = 1528, [1546] = 1546, - [1547] = 1547, + [1547] = 1546, [1548] = 1548, [1549] = 1549, - [1550] = 1550, - [1551] = 1550, + [1550] = 1544, + [1551] = 1551, [1552] = 1552, - [1553] = 1553, - [1554] = 1552, - [1555] = 1552, - [1556] = 1556, - [1557] = 1557, - [1558] = 1552, + [1553] = 1548, + [1554] = 1521, + [1555] = 1551, + [1556] = 1552, + [1557] = 1529, + [1558] = 1537, [1559] = 1559, - [1560] = 1553, - [1561] = 1552, - [1562] = 1553, - [1563] = 1559, - [1564] = 1553, - [1565] = 1553, - [1566] = 1566, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, + [1560] = 1542, + [1561] = 1561, + [1562] = 1543, + [1563] = 1546, + [1564] = 1549, + [1565] = 1544, + [1566] = 1542, + [1567] = 1548, + [1568] = 1521, + [1569] = 1551, + [1570] = 1529, + [1571] = 1537, + [1572] = 1540, [1573] = 1573, - [1574] = 1574, - [1575] = 1575, + [1574] = 1542, + [1575] = 1552, [1576] = 1576, [1577] = 1577, - [1578] = 1578, - [1579] = 1571, - [1580] = 1580, - [1581] = 1581, - [1582] = 1571, + [1578] = 1543, + [1579] = 1546, + [1580] = 1549, + [1581] = 1543, + [1582] = 1582, [1583] = 1583, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, - [1588] = 1588, - [1589] = 1589, - [1590] = 1590, - [1591] = 1571, - [1592] = 1571, - [1593] = 1593, + [1588] = 1586, + [1589] = 1543, + [1590] = 1529, + [1591] = 1549, + [1592] = 1584, + [1593] = 1546, [1594] = 1594, - [1595] = 1595, - [1596] = 1585, - [1597] = 1597, + [1595] = 1548, + [1596] = 1596, + [1597] = 1521, [1598] = 1598, - [1599] = 1599, - [1600] = 1586, - [1601] = 1601, - [1602] = 1602, + [1599] = 1549, + [1600] = 1600, + [1601] = 1551, + [1602] = 1585, [1603] = 1603, [1604] = 1604, [1605] = 1605, - [1606] = 1606, - [1607] = 1607, + [1606] = 1526, + [1607] = 1544, [1608] = 1608, [1609] = 1609, - [1610] = 1610, - [1611] = 1611, - [1612] = 1612, - [1613] = 1613, - [1614] = 1614, - [1615] = 1615, - [1616] = 1616, - [1617] = 1617, + [1610] = 1372, + [1611] = 1551, + [1612] = 1521, + [1613] = 1549, + [1614] = 1548, + [1615] = 1546, + [1616] = 1543, + [1617] = 1551, [1618] = 1618, - [1619] = 1619, + [1619] = 1521, [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 1623, - [1624] = 1624, - [1625] = 1625, + [1623] = 1548, + [1624] = 1584, + [1625] = 1540, [1626] = 1626, [1627] = 1627, [1628] = 1628, - [1629] = 1629, + [1629] = 1561, [1630] = 1630, - [1631] = 1593, - [1632] = 1617, + [1631] = 1631, + [1632] = 1632, [1633] = 1633, [1634] = 1634, - [1635] = 1635, + [1635] = 1542, [1636] = 1636, - [1637] = 1575, - [1638] = 1587, + [1637] = 1542, + [1638] = 1638, [1639] = 1639, - [1640] = 1640, - [1641] = 1641, - [1642] = 1642, + [1640] = 1526, + [1641] = 1529, + [1642] = 1585, [1643] = 1643, - [1644] = 1636, + [1644] = 1644, [1645] = 1645, [1646] = 1646, [1647] = 1647, @@ -4765,86 +4874,86 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1655] = 1655, [1656] = 1656, [1657] = 1657, - [1658] = 1658, + [1658] = 1657, [1659] = 1659, - [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1609, + [1660] = 1659, + [1661] = 1650, + [1662] = 1657, + [1663] = 1655, [1664] = 1664, [1665] = 1665, [1666] = 1666, - [1667] = 1667, - [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 1671, + [1667] = 1651, + [1668] = 1653, + [1669] = 1659, + [1670] = 1650, + [1671] = 1655, [1672] = 1672, - [1673] = 1673, + [1673] = 1653, [1674] = 1674, - [1675] = 1675, - [1676] = 1676, - [1677] = 1677, - [1678] = 1678, + [1675] = 1654, + [1676] = 1651, + [1677] = 1649, + [1678] = 1646, [1679] = 1679, - [1680] = 1665, - [1681] = 1666, + [1680] = 1655, + [1681] = 1681, [1682] = 1682, - [1683] = 1676, + [1683] = 1659, [1684] = 1684, - [1685] = 1671, - [1686] = 1678, - [1687] = 1666, - [1688] = 1668, - [1689] = 1689, + [1685] = 1659, + [1686] = 1650, + [1687] = 1687, + [1688] = 1688, + [1689] = 1656, [1690] = 1690, [1691] = 1691, - [1692] = 1673, - [1693] = 1673, - [1694] = 1666, + [1692] = 1692, + [1693] = 1645, + [1694] = 1694, [1695] = 1695, - [1696] = 1682, - [1697] = 1682, - [1698] = 1698, - [1699] = 1699, - [1700] = 1682, - [1701] = 1701, - [1702] = 1689, - [1703] = 1665, + [1696] = 1655, + [1697] = 1697, + [1698] = 1654, + [1699] = 1674, + [1700] = 1651, + [1701] = 1649, + [1702] = 1646, + [1703] = 1666, [1704] = 1704, - [1705] = 1705, - [1706] = 1706, - [1707] = 1678, - [1708] = 1676, - [1709] = 1673, - [1710] = 1710, - [1711] = 1622, + [1705] = 1674, + [1706] = 1656, + [1707] = 1707, + [1708] = 1645, + [1709] = 1645, + [1710] = 1649, + [1711] = 1711, [1712] = 1712, - [1713] = 1668, - [1714] = 1666, - [1715] = 1689, - [1716] = 1716, - [1717] = 1665, - [1718] = 1718, - [1719] = 1673, - [1720] = 1689, - [1721] = 1668, - [1722] = 1671, - [1723] = 1666, - [1724] = 1671, - [1725] = 1666, - [1726] = 1689, - [1727] = 1668, - [1728] = 1666, - [1729] = 1666, - [1730] = 1730, - [1731] = 1673, + [1713] = 1654, + [1714] = 1674, + [1715] = 1715, + [1716] = 1674, + [1717] = 1645, + [1718] = 1645, + [1719] = 1653, + [1720] = 1720, + [1721] = 1674, + [1722] = 1656, + [1723] = 1657, + [1724] = 1653, + [1725] = 1725, + [1726] = 1657, + [1727] = 1645, + [1728] = 1649, + [1729] = 1674, + [1730] = 1654, + [1731] = 1731, [1732] = 1732, - [1733] = 1671, - [1734] = 1665, - [1735] = 1735, - [1736] = 1676, - [1737] = 1678, + [1733] = 1733, + [1734] = 1734, + [1735] = 1734, + [1736] = 1736, + [1737] = 1737, [1738] = 1738, [1739] = 1739, [1740] = 1740, @@ -4856,6740 +4965,2823 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1746] = 1746, [1747] = 1747, [1748] = 1748, - [1749] = 1749, + [1749] = 1740, [1750] = 1750, [1751] = 1751, [1752] = 1752, - [1753] = 1741, + [1753] = 1753, [1754] = 1754, - [1755] = 1755, + [1755] = 1739, [1756] = 1756, [1757] = 1757, - [1758] = 1754, + [1758] = 1758, [1759] = 1759, - [1760] = 1760, - [1761] = 1740, + [1760] = 1731, + [1761] = 1761, [1762] = 1762, - [1763] = 1763, - [1764] = 1764, + [1763] = 1747, + [1764] = 1734, [1765] = 1765, - [1766] = 1766, + [1766] = 1757, [1767] = 1767, - [1768] = 1768, - [1769] = 1755, + [1768] = 1731, + [1769] = 1743, [1770] = 1770, - [1771] = 1749, - [1772] = 1746, + [1771] = 1771, + [1772] = 1772, [1773] = 1773, [1774] = 1774, - [1775] = 1775, + [1775] = 1731, [1776] = 1776, - [1777] = 1777, - [1778] = 1749, - [1779] = 1746, + [1777] = 1774, + [1778] = 1747, + [1779] = 1779, [1780] = 1780, - [1781] = 1781, - [1782] = 1781, - [1783] = 1745, - [1784] = 1784, - [1785] = 1785, - [1786] = 1786, - [1787] = 1757, + [1781] = 1772, + [1782] = 1741, + [1783] = 1757, + [1784] = 1743, + [1785] = 1747, + [1786] = 1740, + [1787] = 1771, [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1749, - [1792] = 1792, - [1793] = 1745, - [1794] = 1789, - [1795] = 1751, + [1789] = 1752, + [1790] = 986, + [1791] = 1731, + [1792] = 1747, + [1793] = 991, + [1794] = 1743, + [1795] = 1795, [1796] = 1796, [1797] = 1797, - [1798] = 1751, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1593, - [1804] = 1804, + [1798] = 1798, + [1799] = 1759, + [1800] = 1762, + [1801] = 1767, + [1802] = 1731, + [1803] = 1803, + [1804] = 1771, [1805] = 1805, - [1806] = 1740, - [1807] = 1807, - [1808] = 1749, - [1809] = 1754, - [1810] = 1739, - [1811] = 1811, + [1806] = 1741, + [1807] = 1743, + [1808] = 1808, + [1809] = 1809, + [1810] = 1747, + [1811] = 1767, [1812] = 1812, - [1813] = 1796, - [1814] = 1802, + [1813] = 984, + [1814] = 1814, [1815] = 1815, - [1816] = 1759, - [1817] = 1817, - [1818] = 1748, - [1819] = 1819, - [1820] = 1740, - [1821] = 1790, - [1822] = 1788, - [1823] = 1770, - [1824] = 1817, - [1825] = 1741, - [1826] = 1826, - [1827] = 1811, - [1828] = 1746, - [1829] = 1829, + [1816] = 1816, + [1817] = 1774, + [1818] = 1818, + [1819] = 1744, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1767, + [1824] = 1824, + [1825] = 1762, + [1826] = 1759, + [1827] = 1827, + [1828] = 1772, + [1829] = 1757, [1830] = 1830, - [1831] = 1831, - [1832] = 1832, + [1831] = 1752, + [1832] = 1740, [1833] = 1833, - [1834] = 1834, + [1834] = 1746, [1835] = 1835, [1836] = 1836, - [1837] = 1837, - [1838] = 1838, + [1837] = 1752, + [1838] = 1798, [1839] = 1839, [1840] = 1840, - [1841] = 1836, + [1841] = 1841, [1842] = 1842, [1843] = 1843, [1844] = 1844, - [1845] = 1833, - [1846] = 1846, - [1847] = 1839, + [1845] = 1736, + [1846] = 1734, + [1847] = 1847, [1848] = 1848, - [1849] = 1840, - [1850] = 1838, - [1851] = 1840, + [1849] = 1849, + [1850] = 1850, + [1851] = 1788, [1852] = 1852, - [1853] = 1839, + [1853] = 1853, [1854] = 1854, - [1855] = 1848, - [1856] = 1836, - [1857] = 1839, + [1855] = 1751, + [1856] = 1856, + [1857] = 1857, [1858] = 1858, - [1859] = 1846, - [1860] = 1844, + [1859] = 1859, + [1860] = 1759, [1861] = 1861, - [1862] = 1833, - [1863] = 1846, - [1864] = 1838, + [1862] = 1762, + [1863] = 1863, + [1864] = 1864, [1865] = 1865, [1866] = 1866, - [1867] = 1837, - [1868] = 1868, + [1867] = 1865, + [1868] = 1865, [1869] = 1869, - [1870] = 1844, - [1871] = 1836, - [1872] = 1836, + [1870] = 1795, + [1871] = 1767, + [1872] = 1872, [1873] = 1873, - [1874] = 1837, - [1875] = 1875, + [1874] = 1788, + [1875] = 1747, [1876] = 1876, - [1877] = 1861, - [1878] = 1878, - [1879] = 1879, + [1877] = 1796, + [1878] = 1797, + [1879] = 1820, [1880] = 1880, - [1881] = 1881, + [1881] = 1795, [1882] = 1882, - [1883] = 1883, - [1884] = 1837, - [1885] = 1834, - [1886] = 1835, - [1887] = 1887, - [1888] = 1888, - [1889] = 1839, - [1890] = 1834, - [1891] = 1839, - [1892] = 1848, - [1893] = 1893, - [1894] = 1840, + [1883] = 1780, + [1884] = 1780, + [1885] = 1773, + [1886] = 1805, + [1887] = 1745, + [1888] = 1773, + [1889] = 1889, + [1890] = 1890, + [1891] = 981, + [1892] = 1731, + [1893] = 1741, + [1894] = 1894, [1895] = 1895, - [1896] = 1834, - [1897] = 1848, - [1898] = 1898, - [1899] = 1861, - [1900] = 1844, - [1901] = 1833, - [1902] = 1838, - [1903] = 1848, - [1904] = 1846, - [1905] = 1846, - [1906] = 1838, - [1907] = 1865, - [1908] = 1848, - [1909] = 1861, - [1910] = 1844, - [1911] = 1861, - [1912] = 1834, - [1913] = 1837, - [1914] = 1834, - [1915] = 1838, - [1916] = 1848, - [1917] = 1917, - [1918] = 1840, + [1896] = 1896, + [1897] = 1843, + [1898] = 1739, + [1899] = 1736, + [1900] = 1745, + [1901] = 1901, + [1902] = 1902, + [1903] = 1903, + [1904] = 1904, + [1905] = 1905, + [1906] = 1906, + [1907] = 1796, + [1908] = 1797, + [1909] = 1909, + [1910] = 1910, + [1911] = 1911, + [1912] = 1751, + [1913] = 1805, + [1914] = 1914, + [1915] = 1739, + [1916] = 1889, + [1917] = 1857, + [1918] = 1918, [1919] = 1919, - [1920] = 1865, - [1921] = 1861, - [1922] = 1846, - [1923] = 1833, - [1924] = 1848, - [1925] = 1861, - [1926] = 1844, - [1927] = 1836, - [1928] = 1861, - [1929] = 1861, - [1930] = 1848, + [1920] = 1736, + [1921] = 1921, + [1922] = 1922, + [1923] = 621, + [1924] = 1924, + [1925] = 1925, + [1926] = 1926, + [1927] = 1927, + [1928] = 1796, + [1929] = 1751, + [1930] = 1734, [1931] = 1931, - [1932] = 1932, - [1933] = 1933, - [1934] = 1934, - [1935] = 1935, + [1932] = 1796, + [1933] = 1796, + [1934] = 1857, + [1935] = 1771, [1936] = 1936, [1937] = 1937, - [1938] = 1936, + [1938] = 1938, [1939] = 1939, - [1940] = 1934, - [1941] = 1935, - [1942] = 1936, - [1943] = 1937, - [1944] = 1944, - [1945] = 1939, - [1946] = 1935, - [1947] = 1937, - [1948] = 1948, - [1949] = 1939, - [1950] = 1935, - [1951] = 1937, - [1952] = 1952, - [1953] = 1953, - [1954] = 1954, + [1940] = 1940, + [1941] = 1746, + [1942] = 1918, + [1943] = 1744, + [1944] = 1746, + [1945] = 1767, + [1946] = 1946, + [1947] = 1947, + [1948] = 1743, + [1949] = 1848, + [1950] = 1950, + [1951] = 1805, + [1952] = 1774, + [1953] = 1772, + [1954] = 1744, [1955] = 1955, - [1956] = 1956, - [1957] = 1935, - [1958] = 1958, - [1959] = 1934, + [1956] = 1788, + [1957] = 1818, + [1958] = 1940, + [1959] = 1940, [1960] = 1960, - [1961] = 1961, - [1962] = 1962, - [1963] = 1963, - [1964] = 1964, - [1965] = 1931, - [1966] = 1966, - [1967] = 1939, - [1968] = 1968, + [1961] = 1757, + [1962] = 1848, + [1963] = 1788, + [1964] = 1843, + [1965] = 1965, + [1966] = 1736, + [1967] = 1743, + [1968] = 1788, [1969] = 1969, - [1970] = 1970, - [1971] = 1971, + [1970] = 1848, + [1971] = 1939, [1972] = 1972, - [1973] = 1961, + [1973] = 1734, [1974] = 1974, - [1975] = 1935, + [1975] = 1940, [1976] = 1976, - [1977] = 1977, - [1978] = 1369, - [1979] = 1955, - [1980] = 1980, - [1981] = 1981, - [1982] = 1937, - [1983] = 1944, - [1984] = 1936, - [1985] = 1974, - [1986] = 1948, - [1987] = 1937, - [1988] = 1962, - [1989] = 1962, - [1990] = 1948, - [1991] = 1991, - [1992] = 1992, - [1993] = 1993, - [1994] = 1994, - [1995] = 1958, - [1996] = 1937, - [1997] = 1980, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 2001, - [2002] = 1934, - [2003] = 1991, - [2004] = 1936, - [2005] = 1993, - [2006] = 2006, - [2007] = 1396, - [2008] = 1980, - [2009] = 1955, - [2010] = 1935, - [2011] = 1934, - [2012] = 1354, - [2013] = 1960, - [2014] = 1953, - [2015] = 1954, - [2016] = 1961, - [2017] = 1976, - [2018] = 2018, - [2019] = 1963, - [2020] = 1964, - [2021] = 2021, - [2022] = 1933, - [2023] = 1956, - [2024] = 1939, - [2025] = 1976, - [2026] = 2026, - [2027] = 2006, - [2028] = 2018, - [2029] = 2029, - [2030] = 2030, - [2031] = 1968, - [2032] = 1969, - [2033] = 1970, - [2034] = 1981, - [2035] = 1961, - [2036] = 1944, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 2041, - [2042] = 1953, - [2043] = 1954, - [2044] = 2044, - [2045] = 2045, - [2046] = 1971, - [2047] = 2047, - [2048] = 1960, - [2049] = 2049, - [2050] = 1956, - [2051] = 1977, - [2052] = 1971, - [2053] = 2021, - [2054] = 2054, - [2055] = 2055, - [2056] = 2006, - [2057] = 2057, - [2058] = 2058, - [2059] = 2029, - [2060] = 1981, - [2061] = 2054, - [2062] = 1944, - [2063] = 2063, - [2064] = 2021, - [2065] = 2065, - [2066] = 2066, - [2067] = 2049, - [2068] = 1953, - [2069] = 1954, - [2070] = 2070, - [2071] = 1976, - [2072] = 2072, - [2073] = 2073, - [2074] = 1956, - [2075] = 1980, - [2076] = 1993, - [2077] = 2047, - [2078] = 2078, - [2079] = 1962, - [2080] = 1939, - [2081] = 1948, - [2082] = 1937, - [2083] = 1364, - [2084] = 2084, - [2085] = 2085, - [2086] = 1953, - [2087] = 1936, - [2088] = 2088, - [2089] = 1953, - [2090] = 1953, - [2091] = 1953, - [2092] = 2092, - [2093] = 1955, - [2094] = 1935, - [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 2054, - [2101] = 1944, - [2102] = 1934, - [2103] = 1931, - [2104] = 1970, - [2105] = 2105, - [2106] = 1969, - [2107] = 2070, - [2108] = 2108, - [2109] = 2109, - [2110] = 2110, - [2111] = 2111, - [2112] = 2112, - [2113] = 1963, - [2114] = 2114, - [2115] = 1964, - [2116] = 1960, - [2117] = 2117, - [2118] = 1971, - [2119] = 2119, - [2120] = 1968, - [2121] = 2121, - [2122] = 2122, - [2123] = 2112, - [2124] = 2049, - [2125] = 2125, - [2126] = 1999, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, - [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 1952, - [2134] = 1939, - [2135] = 1966, - [2136] = 1931, - [2137] = 1963, - [2138] = 2138, - [2139] = 2139, - [2140] = 1964, - [2141] = 1931, - [2142] = 1931, - [2143] = 2063, - [2144] = 1939, - [2145] = 1966, - [2146] = 1981, - [2147] = 2147, - [2148] = 2096, - [2149] = 1964, - [2150] = 2150, - [2151] = 2151, - [2152] = 2070, - [2153] = 1939, - [2154] = 2154, - [2155] = 2155, - [2156] = 777, - [2157] = 2157, - [2158] = 2047, - [2159] = 2159, - [2160] = 2070, - [2161] = 1968, - [2162] = 1963, - [2163] = 2163, - [2164] = 1971, - [2165] = 2165, - [2166] = 2166, - [2167] = 1960, - [2168] = 2070, - [2169] = 2078, - [2170] = 1934, - [2171] = 1968, - [2172] = 1969, - [2173] = 778, - [2174] = 2174, - [2175] = 2096, - [2176] = 2176, - [2177] = 2177, - [2178] = 1931, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, - [2182] = 2182, - [2183] = 1970, - [2184] = 1961, - [2185] = 1962, - [2186] = 2047, - [2187] = 2187, - [2188] = 2188, - [2189] = 2049, - [2190] = 1944, - [2191] = 2191, - [2192] = 2192, - [2193] = 2099, - [2194] = 1956, - [2195] = 1969, - [2196] = 1970, - [2197] = 2096, - [2198] = 2054, - [2199] = 1961, - [2200] = 2006, - [2201] = 1948, - [2202] = 2202, - [2203] = 2021, - [2204] = 1937, - [2205] = 1955, - [2206] = 2206, - [2207] = 2207, - [2208] = 1976, - [2209] = 2209, - [2210] = 1935, - [2211] = 2211, - [2212] = 1931, - [2213] = 1936, - [2214] = 2214, - [2215] = 2215, - [2216] = 2216, - [2217] = 2217, - [2218] = 2096, - [2219] = 1980, - [2220] = 2220, - [2221] = 2096, - [2222] = 2084, - [2223] = 1954, - [2224] = 1993, - [2225] = 2192, - [2226] = 1936, - [2227] = 1953, - [2228] = 2191, + [1977] = 1797, + [1978] = 1940, + [1979] = 620, + [1980] = 1796, }; -static inline bool sym_number_literal_character_set_1(int32_t c) { - return (c < 'b' - ? (c < 'L' - ? (c < 'D' - ? c == 'B' - : c <= 'F') - : (c <= 'L' || (c < 'W' - ? c == 'U' - : c <= 'W'))) - : (c <= 'b' || (c < 'u' - ? (c < 'l' - ? (c >= 'd' && c <= 'f') - : c <= 'l') - : (c <= 'u' || c == 'w')))); -} - -static inline bool sym_number_literal_character_set_2(int32_t c) { - return (c < 'b' - ? (c < 'L' - ? (c < 'D' - ? c == 'B' - : (c <= 'D' || c == 'F')) - : (c <= 'L' || (c < 'W' - ? c == 'U' - : c <= 'W'))) - : (c <= 'b' || (c < 'l' - ? (c < 'f' - ? c == 'd' - : c <= 'f') - : (c <= 'l' || (c < 'w' - ? c == 'u' - : c <= 'w'))))); -} - -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43488 - ? (c < 4159 - ? (c < 2654 - ? (c < 1808 - ? (c < 895 - ? (c < 192 - ? (c < 'a' - ? (c < 'M' - ? (c < 'A' - ? c == '$' - : c <= 'K') - : (c <= 'T' || (c < '_' - ? (c >= 'V' && c <= 'Z') - : c <= '_'))) - : (c <= 't' || (c < 181 - ? (c < 170 - ? (c >= 'v' && c <= 'z') - : c <= 170) - : (c <= 181 || c == 186)))) - : (c <= 214 || (c < 748 - ? (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))) - : (c <= 748 || (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))))))) - : (c <= 895 || (c < 1488 - ? (c < 1015 - ? (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013))) - : (c <= 1153 || (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c >= 1376 && c <= 1416))))) - : (c <= 1514 || (c < 1749 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : c <= 1610) - : (c <= 1647 || (c >= 1649 && c <= 1747))) - : (c <= 1749 || (c < 1786 - ? (c < 1774 - ? (c >= 1765 && c <= 1766) - : c <= 1775) - : (c <= 1788 || c == 1791)))))))) - : (c <= 1808 || (c < 2437 - ? (c < 2112 - ? (c < 2042 - ? (c < 1969 - ? (c < 1869 - ? (c >= 1810 && c <= 1839) - : c <= 1957) - : (c <= 1969 || (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037))) - : (c <= 2042 || (c < 2084 - ? (c < 2074 - ? (c >= 2048 && c <= 2069) - : c <= 2074) - : (c <= 2084 || c == 2088)))) - : (c <= 2136 || (c < 2308 - ? (c < 2185 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183) - : (c <= 2190 || (c >= 2208 && c <= 2249))) - : (c <= 2361 || (c < 2392 - ? (c < 2384 - ? c == 2365 - : c <= 2384) - : (c <= 2401 || (c >= 2417 && c <= 2432))))))) - : (c <= 2444 || (c < 2544 - ? (c < 2486 - ? (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || c == 2482)) - : (c <= 2489 || (c < 2524 - ? (c < 2510 - ? c == 2493 - : c <= 2510) - : (c <= 2525 || (c >= 2527 && c <= 2529))))) - : (c <= 2545 || (c < 2602 - ? (c < 2575 - ? (c < 2565 - ? c == 2556 - : c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c >= 2649 && c <= 2652))))))))))) - : (c <= 2654 || (c < 3205 - ? (c < 2929 - ? (c < 2809 - ? (c < 2738 - ? (c < 2703 - ? (c < 2693 - ? (c >= 2674 && c <= 2676) - : c <= 2701) - : (c <= 2705 || (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736))) - : (c <= 2739 || (c < 2768 - ? (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749) - : (c <= 2768 || (c >= 2784 && c <= 2785))))) - : (c <= 2809 || (c < 2866 - ? (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))))))) - : (c <= 2929 || (c < 3024 - ? (c < 2972 - ? (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c >= 2990 && c <= 3001))))) - : (c <= 3024 || (c < 3133 - ? (c < 3090 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))) - : (c <= 3133 || (c < 3168 - ? (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165) - : (c <= 3169 || c == 3200)))))))) - : (c <= 3212 || (c < 3520 - ? (c < 3346 - ? (c < 3293 - ? (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261))) - : (c <= 3294 || (c < 3332 - ? (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))))) - : (c <= 3386 || (c < 3450 - ? (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c >= 3423 && c <= 3425))) - : (c <= 3455 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)))))) - : (c <= 3526 || (c < 3762 - ? (c < 3716 - ? (c < 3648 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634) - : (c <= 3654 || (c >= 3713 && c <= 3714))) - : (c <= 3716 || (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))))) - : (c <= 3762 || (c < 3840 - ? (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))) - : (c <= 3840 || (c < 3976 - ? (c < 3913 - ? (c >= 3904 && c <= 3911) - : c <= 3948) - : (c <= 3980 || (c >= 4096 && c <= 4138))))))))))))) - : (c <= 4159 || (c < 8126 - ? (c < 6103 - ? (c < 4792 - ? (c < 4304 - ? (c < 4213 - ? (c < 4193 - ? (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189) - : (c <= 4193 || (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208))) - : (c <= 4225 || (c < 4295 - ? (c < 4256 - ? c == 4238 - : c <= 4293) - : (c <= 4295 || c == 4301)))) - : (c <= 4346 || (c < 4698 - ? (c < 4688 - ? (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685) - : (c <= 4694 || c == 4696)) - : (c <= 4701 || (c < 4752 - ? (c < 4746 - ? (c >= 4704 && c <= 4744) - : c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))))))) - : (c <= 4798 || (c < 5743 - ? (c < 4888 - ? (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))) - : (c <= 4954 || (c < 5112 - ? (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109) - : (c <= 5117 || (c >= 5121 && c <= 5740))))) - : (c <= 5759 || (c < 5919 - ? (c < 5870 - ? (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866) - : (c <= 5880 || (c >= 5888 && c <= 5905))) - : (c <= 5937 || (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))))))))) - : (c <= 6103 || (c < 7258 - ? (c < 6656 - ? (c < 6400 - ? (c < 6272 - ? (c < 6176 - ? c == 6108 - : c <= 6264) - : (c <= 6312 || (c < 6320 - ? c == 6314 - : c <= 6389))) - : (c <= 6430 || (c < 6528 - ? (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c >= 6576 && c <= 6601))))) - : (c <= 6678 || (c < 7043 - ? (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6988))) - : (c <= 7072 || (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))))))) - : (c <= 7293 || (c < 7960 - ? (c < 7406 - ? (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))) - : (c <= 7411 || (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c >= 7680 && c <= 7957))))) - : (c <= 7965 || (c < 8027 - ? (c < 8016 - ? (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013) - : (c <= 8023 || c == 8025)) - : (c <= 8027 || (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c >= 8118 && c <= 8124))))))))))) - : (c <= 8126 || (c < 12293 - ? (c < 8517 - ? (c < 8450 - ? (c < 8178 - ? (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))) - : (c <= 8180 || (c < 8319 - ? (c < 8305 - ? (c >= 8182 && c <= 8188) - : c <= 8305) - : (c <= 8319 || (c >= 8336 && c <= 8348))))) - : (c <= 8450 || (c < 8484 - ? (c < 8469 - ? (c < 8458 - ? c == 8455 - : c <= 8467) - : (c <= 8469 || (c >= 8472 && c <= 8477))) - : (c <= 8484 || (c < 8490 - ? (c < 8488 - ? c == 8486 - : c <= 8488) - : (c <= 8505 || (c >= 8508 && c <= 8511))))))) - : (c <= 8521 || (c < 11631 - ? (c < 11506 - ? (c < 11264 - ? (c < 8544 - ? c == 8526 - : c <= 8584) - : (c <= 11492 || (c >= 11499 && c <= 11502))) - : (c <= 11507 || (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c >= 11568 && c <= 11623))))) - : (c <= 11631 || (c < 11704 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))))))))) - : (c <= 12295 || (c < 42775 - ? (c < 12784 - ? (c < 12449 - ? (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12329) - : c <= 12341) - : (c <= 12348 || (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447))) - : (c <= 12538 || (c < 12593 - ? (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591) - : (c <= 12686 || (c >= 12704 && c <= 12735))))) - : (c <= 12799 || (c < 42512 - ? (c < 42192 - ? (c < 19968 - ? (c >= 13312 && c <= 19903) - : c <= 42124) - : (c <= 42237 || (c >= 42240 && c <= 42508))) - : (c <= 42527 || (c < 42623 - ? (c < 42560 - ? (c >= 42538 && c <= 42539) - : c <= 42606) - : (c <= 42653 || (c >= 42656 && c <= 42735))))))) - : (c <= 42783 || (c < 43072 - ? (c < 42965 - ? (c < 42960 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42954) - : (c <= 42961 || c == 42963)) - : (c <= 42969 || (c < 43015 - ? (c < 43011 - ? (c >= 42994 && c <= 43009) - : c <= 43013) - : (c <= 43018 || (c >= 43020 && c <= 43042))))) - : (c <= 43123 || (c < 43274 - ? (c < 43259 - ? (c < 43250 - ? (c >= 43138 && c <= 43187) - : c <= 43255) - : (c <= 43259 || (c >= 43261 && c <= 43262))) - : (c <= 43301 || (c < 43396 - ? (c < 43360 - ? (c >= 43312 && c <= 43334) - : c <= 43388) - : (c <= 43442 || c == 43471)))))))))))))) - : (c <= 43492 || (c < 70656 - ? (c < 66940 - ? (c < 64848 - ? (c < 43816 - ? (c < 43705 - ? (c < 43616 - ? (c < 43520 - ? (c < 43514 - ? (c >= 43494 && c <= 43503) - : c <= 43518) - : (c <= 43560 || (c < 43588 - ? (c >= 43584 && c <= 43586) - : c <= 43595))) - : (c <= 43638 || (c < 43697 - ? (c < 43646 - ? c == 43642 - : c <= 43695) - : (c <= 43697 || (c >= 43701 && c <= 43702))))) - : (c <= 43709 || (c < 43762 - ? (c < 43739 - ? (c < 43714 - ? c == 43712 - : c <= 43714) - : (c <= 43741 || (c >= 43744 && c <= 43754))) - : (c <= 43764 || (c < 43793 - ? (c < 43785 - ? (c >= 43777 && c <= 43782) - : c <= 43790) - : (c <= 43798 || (c >= 43808 && c <= 43814))))))) - : (c <= 43822 || (c < 64285 - ? (c < 55243 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44002 || (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238))) - : (c <= 55291 || (c < 64256 - ? (c < 64112 - ? (c >= 63744 && c <= 64109) - : c <= 64217) - : (c <= 64262 || (c >= 64275 && c <= 64279))))) - : (c <= 64285 || (c < 64320 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64287 && c <= 64296) - : c <= 64310) - : (c <= 64316 || c == 64318)) - : (c <= 64321 || (c < 64467 - ? (c < 64326 - ? (c >= 64323 && c <= 64324) - : c <= 64433) - : (c <= 64605 || (c >= 64612 && c <= 64829))))))))) - : (c <= 64911 || (c < 65596 - ? (c < 65345 - ? (c < 65145 - ? (c < 65137 - ? (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65017) - : (c <= 65137 || (c < 65143 - ? c == 65139 - : c <= 65143))) - : (c <= 65145 || (c < 65151 - ? (c < 65149 - ? c == 65147 - : c <= 65149) - : (c <= 65276 || (c >= 65313 && c <= 65338))))) - : (c <= 65370 || (c < 65490 - ? (c < 65474 - ? (c < 65440 - ? (c >= 65382 && c <= 65437) - : c <= 65470) - : (c <= 65479 || (c >= 65482 && c <= 65487))) - : (c <= 65495 || (c < 65549 - ? (c < 65536 - ? (c >= 65498 && c <= 65500) - : c <= 65547) - : (c <= 65574 || (c >= 65576 && c <= 65594))))))) - : (c <= 65597 || (c < 66432 - ? (c < 66176 - ? (c < 65664 - ? (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629) - : (c <= 65786 || (c >= 65856 && c <= 65908))) - : (c <= 66204 || (c < 66349 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : c <= 66335) - : (c <= 66378 || (c >= 66384 && c <= 66421))))) - : (c <= 66461 || (c < 66736 - ? (c < 66513 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))) - : (c <= 66771 || (c < 66864 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855) - : (c <= 66915 || (c >= 66928 && c <= 66938))))))))))) - : (c <= 66954 || (c < 68800 - ? (c < 67808 - ? (c < 67463 - ? (c < 67003 - ? (c < 66967 - ? (c < 66964 - ? (c >= 66956 && c <= 66962) - : c <= 66965) - : (c <= 66977 || (c < 66995 - ? (c >= 66979 && c <= 66993) - : c <= 67001))) - : (c <= 67004 || (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c >= 67456 && c <= 67461))))) - : (c <= 67504 || (c < 67639 - ? (c < 67592 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))) - : (c <= 67640 || (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c >= 67712 && c <= 67742))))))) - : (c <= 67826 || (c < 68192 - ? (c < 68030 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c >= 67968 && c <= 68023))) - : (c <= 68031 || (c < 68117 - ? (c < 68112 - ? c == 68096 - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))) - : (c <= 68220 || (c < 68416 - ? (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68324 || (c >= 68352 && c <= 68405))) - : (c <= 68437 || (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))))))))) - : (c <= 68850 || (c < 70081 - ? (c < 69745 - ? (c < 69424 - ? (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))) - : (c <= 69445 || (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69505) - : c <= 69572) - : (c <= 69622 || (c >= 69635 && c <= 69687))))) - : (c <= 69746 || (c < 69956 - ? (c < 69840 - ? (c < 69763 - ? c == 69749 - : c <= 69807) - : (c <= 69864 || (c >= 69891 && c <= 69926))) - : (c <= 69956 || (c < 70006 - ? (c < 69968 - ? c == 69959 - : c <= 70002) - : (c <= 70006 || (c >= 70019 && c <= 70066))))))) - : (c <= 70084 || (c < 70320 - ? (c < 70272 - ? (c < 70144 - ? (c < 70108 - ? c == 70106 - : c <= 70108) - : (c <= 70161 || (c >= 70163 && c <= 70187))) - : (c <= 70278 || (c < 70287 - ? (c < 70282 - ? c == 70280 - : c <= 70285) - : (c <= 70301 || (c >= 70303 && c <= 70312))))) - : (c <= 70366 || (c < 70450 - ? (c < 70419 - ? (c < 70415 - ? (c >= 70405 && c <= 70412) - : c <= 70416) - : (c <= 70440 || (c >= 70442 && c <= 70448))) - : (c <= 70451 || (c < 70480 - ? (c < 70461 - ? (c >= 70453 && c <= 70457) - : c <= 70461) - : (c <= 70480 || (c >= 70493 && c <= 70497))))))))))))) - : (c <= 70708 || (c < 119894 - ? (c < 73056 - ? (c < 71999 - ? (c < 71352 - ? (c < 71040 - ? (c < 70784 - ? (c < 70751 - ? (c >= 70727 && c <= 70730) - : c <= 70753) - : (c <= 70831 || (c < 70855 - ? (c >= 70852 && c <= 70853) - : c <= 70855))) - : (c <= 71086 || (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71131) - : c <= 71215) - : (c <= 71236 || (c >= 71296 && c <= 71338))))) - : (c <= 71352 || (c < 71935 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71424 && c <= 71450) - : c <= 71494) - : (c <= 71723 || (c >= 71840 && c <= 71903))) - : (c <= 71942 || (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c >= 71960 && c <= 71983))))))) - : (c <= 71999 || (c < 72349 - ? (c < 72192 - ? (c < 72106 - ? (c < 72096 - ? c == 72001 - : c <= 72103) - : (c <= 72144 || (c < 72163 - ? c == 72161 - : c <= 72163))) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43494 - ? (c < 4186 - ? (c < 2703 - ? (c < 1969 - ? (c < 908 - ? (c < 710 - ? (c < 181 - ? (c < '_' - ? (c < 'A' - ? c == '$' - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c >= 248 && c <= 705))))) - : (c <= 721 || (c < 886 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c >= 880 && c <= 884))) - : (c <= 887 || (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 902 || (c >= 904 && c <= 906))))))) - : (c <= 908 || (c < 1646 - ? (c < 1369 - ? (c < 1015 - ? (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013) - : (c <= 1153 || (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366))) - : (c <= 1369 || (c < 1519 - ? (c < 1488 - ? (c >= 1376 && c <= 1416) - : c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))))) - : (c <= 1647 || (c < 1786 - ? (c < 1765 - ? (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749) - : (c <= 1766 || (c >= 1774 && c <= 1775))) - : (c <= 1788 || (c < 1810 - ? (c < 1808 - ? c == 1791 - : c <= 1808) - : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) - : (c <= 1969 || (c < 2474 - ? (c < 2185 - ? (c < 2084 - ? (c < 2042 - ? (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037) - : (c <= 2042 || (c < 2074 - ? (c >= 2048 && c <= 2069) - : c <= 2074))) - : (c <= 2084 || (c < 2144 - ? (c < 2112 - ? c == 2088 - : c <= 2136) - : (c <= 2154 || (c >= 2160 && c <= 2183))))) - : (c <= 2190 || (c < 2392 - ? (c < 2365 - ? (c < 2308 - ? (c >= 2208 && c <= 2249) - : c <= 2361) - : (c <= 2365 || c == 2384)) - : (c <= 2401 || (c < 2447 - ? (c < 2437 - ? (c >= 2417 && c <= 2432) - : c <= 2444) - : (c <= 2448 || (c >= 2451 && c <= 2472))))))) - : (c <= 2480 || (c < 2575 - ? (c < 2524 - ? (c < 2493 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2493 || c == 2510)) - : (c <= 2525 || (c < 2556 - ? (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545) - : (c <= 2556 || (c >= 2565 && c <= 2570))))) - : (c <= 2576 || (c < 2616 - ? (c < 2610 - ? (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2674 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654) - : (c <= 2676 || (c >= 2693 && c <= 2701))))))))))) - : (c <= 2705 || (c < 3218 - ? (c < 2958 - ? (c < 2835 - ? (c < 2768 - ? (c < 2738 - ? (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736) - : (c <= 2739 || (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749))) - : (c <= 2768 || (c < 2821 - ? (c < 2809 - ? (c >= 2784 && c <= 2785) - : c <= 2809) - : (c <= 2828 || (c >= 2831 && c <= 2832))))) - : (c <= 2856 || (c < 2908 - ? (c < 2869 - ? (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867) - : (c <= 2873 || c == 2877)) - : (c <= 2909 || (c < 2947 - ? (c < 2929 - ? (c >= 2911 && c <= 2913) - : c <= 2929) - : (c <= 2947 || (c >= 2949 && c <= 2954))))))) - : (c <= 2960 || (c < 3086 - ? (c < 2979 - ? (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c >= 2974 && c <= 2975))) - : (c <= 2980 || (c < 3024 - ? (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001) - : (c <= 3024 || (c >= 3077 && c <= 3084))))) - : (c <= 3088 || (c < 3165 - ? (c < 3133 - ? (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129) - : (c <= 3133 || (c >= 3160 && c <= 3162))) - : (c <= 3165 || (c < 3205 - ? (c < 3200 - ? (c >= 3168 && c <= 3169) - : c <= 3200) - : (c <= 3212 || (c >= 3214 && c <= 3216))))))))) - : (c <= 3240 || (c < 3634 - ? (c < 3406 - ? (c < 3313 - ? (c < 3261 - ? (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257) - : (c <= 3261 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3297))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3332 && c <= 3340) - : c <= 3344) - : (c <= 3386 || c == 3389)))) - : (c <= 3406 || (c < 3482 - ? (c < 3450 - ? (c < 3423 - ? (c >= 3412 && c <= 3414) - : c <= 3425) - : (c <= 3455 || (c >= 3461 && c <= 3478))) - : (c <= 3505 || (c < 3520 - ? (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517) - : (c <= 3526 || (c >= 3585 && c <= 3632))))))) - : (c <= 3634 || (c < 3776 - ? (c < 3724 - ? (c < 3716 - ? (c < 3713 - ? (c >= 3648 && c <= 3654) - : c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))) - : (c <= 3747 || (c < 3762 - ? (c < 3751 - ? c == 3749 - : c <= 3760) - : (c <= 3762 || c == 3773)))) - : (c <= 3780 || (c < 3913 - ? (c < 3840 - ? (c < 3804 - ? c == 3782 - : c <= 3807) - : (c <= 3840 || (c >= 3904 && c <= 3911))) - : (c <= 3948 || (c < 4159 - ? (c < 4096 - ? (c >= 3976 && c <= 3980) - : c <= 4138) - : (c <= 4159 || (c >= 4176 && c <= 4181))))))))))))) - : (c <= 4189 || (c < 8130 - ? (c < 6108 - ? (c < 4802 - ? (c < 4682 - ? (c < 4256 - ? (c < 4206 - ? (c < 4197 - ? c == 4193 - : c <= 4198) - : (c <= 4208 || (c < 4238 - ? (c >= 4213 && c <= 4225) - : c <= 4238))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c >= 4348 && c <= 4680))))) - : (c <= 4685 || (c < 4746 - ? (c < 4698 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696) - : (c <= 4701 || (c >= 4704 && c <= 4744))) - : (c <= 4749 || (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || c == 4800)))))) - : (c <= 4805 || (c < 5761 - ? (c < 4992 - ? (c < 4882 - ? (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))) - : (c <= 5007 || (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c >= 5743 && c <= 5759))))) - : (c <= 5786 || (c < 5952 - ? (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5905 || (c >= 5919 && c <= 5937))) - : (c <= 5969 || (c < 6016 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6067 || c == 6103)))))))) - : (c <= 6108 || (c < 7296 - ? (c < 6688 - ? (c < 6480 - ? (c < 6314 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312) - : (c <= 6314 || (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c >= 6656 && c <= 6678))))) - : (c <= 6740 || (c < 7086 - ? (c < 6981 - ? (c < 6917 - ? c == 6823 - : c <= 6963) - : (c <= 6988 || (c >= 7043 && c <= 7072))) - : (c <= 7087 || (c < 7245 - ? (c < 7168 - ? (c >= 7098 && c <= 7141) - : c <= 7203) - : (c <= 7247 || (c >= 7258 && c <= 7293))))))) - : (c <= 7304 || (c < 7968 - ? (c < 7413 - ? (c < 7401 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7404 || (c >= 7406 && c <= 7411))) - : (c <= 7414 || (c < 7680 - ? (c < 7424 - ? c == 7418 - : c <= 7615) - : (c <= 7957 || (c >= 7960 && c <= 7965))))) - : (c <= 8005 || (c < 8029 - ? (c < 8025 - ? (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023) - : (c <= 8025 || c == 8027)) - : (c <= 8029 || (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || c == 8126)))))))))) - : (c <= 8132 || (c < 12321 - ? (c < 8526 - ? (c < 8455 - ? (c < 8182 - ? (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180))) - : (c <= 8188 || (c < 8336 - ? (c < 8319 - ? c == 8305 - : c <= 8319) - : (c <= 8348 || c == 8450)))) - : (c <= 8455 || (c < 8486 - ? (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || c == 8484)) - : (c <= 8486 || (c < 8508 - ? (c < 8490 - ? c == 8488 - : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))))))) - : (c <= 8526 || (c < 11648 - ? (c < 11520 - ? (c < 11499 - ? (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))) - : (c <= 11557 || (c < 11568 - ? (c < 11565 - ? c == 11559 - : c <= 11565) - : (c <= 11623 || c == 11631)))) - : (c <= 11670 || (c < 11712 - ? (c < 11696 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c >= 11704 && c <= 11710))) - : (c <= 11718 || (c < 11736 - ? (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734) - : (c <= 11742 || (c >= 12293 && c <= 12295))))))))) - : (c <= 12329 || (c < 42786 - ? (c < 13312 - ? (c < 12540 - ? (c < 12353 - ? (c < 12344 - ? (c >= 12337 && c <= 12341) - : c <= 12348) - : (c <= 12438 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))) - : (c <= 12543 || (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c >= 12784 && c <= 12799))))) - : (c <= 19903 || (c < 42538 - ? (c < 42240 - ? (c < 42192 - ? (c >= 19968 && c <= 42124) - : c <= 42237) - : (c <= 42508 || (c >= 42512 && c <= 42527))) - : (c <= 42539 || (c < 42656 - ? (c < 42623 - ? (c >= 42560 && c <= 42606) - : c <= 42653) - : (c <= 42735 || (c >= 42775 && c <= 42783))))))) - : (c <= 42888 || (c < 43138 - ? (c < 42994 - ? (c < 42963 - ? (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961) - : (c <= 42963 || (c >= 42965 && c <= 42969))) - : (c <= 43009 || (c < 43020 - ? (c < 43015 - ? (c >= 43011 && c <= 43013) - : c <= 43018) - : (c <= 43042 || (c >= 43072 && c <= 43123))))) - : (c <= 43187 || (c < 43312 - ? (c < 43261 - ? (c < 43259 - ? (c >= 43250 && c <= 43255) - : c <= 43259) - : (c <= 43262 || (c >= 43274 && c <= 43301))) - : (c <= 43334 || (c < 43471 - ? (c < 43396 - ? (c >= 43360 && c <= 43388) - : c <= 43442) - : (c <= 43471 || (c >= 43488 && c <= 43492))))))))))))))) - : (c <= 43503 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43824 - ? (c < 43712 - ? (c < 43642 - ? (c < 43584 - ? (c < 43520 - ? (c >= 43514 && c <= 43518) - : c <= 43560) - : (c <= 43586 || (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638))) - : (c <= 43642 || (c < 43701 - ? (c < 43697 - ? (c >= 43646 && c <= 43695) - : c <= 43697) - : (c <= 43702 || (c >= 43705 && c <= 43709))))) - : (c <= 43712 || (c < 43777 - ? (c < 43744 - ? (c < 43739 - ? c == 43714 - : c <= 43741) - : (c <= 43754 || (c >= 43762 && c <= 43764))) - : (c <= 43782 || (c < 43808 - ? (c < 43793 - ? (c >= 43785 && c <= 43790) - : c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))))))) - : (c <= 43866 || (c < 64287 - ? (c < 63744 - ? (c < 44032 - ? (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44002) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} +static TSCharacterRange sym_number_literal_character_set_13[] = { + {'0', '9'}, {'B', 'B'}, {'D', 'D'}, {'F', 'F'}, {'L', 'L'}, {'U', 'U'}, {'W', 'W'}, {'b', 'b'}, + {'d', 'd'}, {'f', 'f'}, {'l', 'l'}, {'u', 'u'}, {'w', 'w'}, +}; -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2741 - ? (c < 2042 - ? (c < 931 - ? (c < 248 - ? (c < 170 - ? (c < 'A' - ? (c < '0' - ? c == '$' - : c <= '9') - : (c <= 'Z' || (c < 'a' - ? c == '_' - : c <= 'z'))) - : (c <= 170 || (c < 186 - ? (c < 183 - ? c == 181 - : c <= 183) - : (c <= 186 || (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246))))) - : (c <= 705 || (c < 886 - ? (c < 748 - ? (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740) - : (c <= 748 || (c < 768 - ? c == 750 - : c <= 884))) - : (c <= 887 || (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 906 || (c < 910 - ? c == 908 - : c <= 929))))))) - : (c <= 1013 || (c < 1488 - ? (c < 1376 - ? (c < 1162 - ? (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) - : (c <= 1416 || (c < 1473 - ? (c < 1471 - ? (c >= 1425 && c <= 1469) - : c <= 1471) - : (c <= 1474 || (c < 1479 - ? (c >= 1476 && c <= 1477) - : c <= 1479))))) - : (c <= 1514 || (c < 1759 - ? (c < 1568 - ? (c < 1552 - ? (c >= 1519 && c <= 1522) - : c <= 1562) - : (c <= 1641 || (c < 1749 - ? (c >= 1646 && c <= 1747) - : c <= 1756))) - : (c <= 1768 || (c < 1808 - ? (c < 1791 - ? (c >= 1770 && c <= 1788) - : c <= 1791) - : (c <= 1866 || (c < 1984 - ? (c >= 1869 && c <= 1969) - : c <= 2037))))))))) - : (c <= 2042 || (c < 2556 - ? (c < 2447 - ? (c < 2185 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183))) - : (c <= 2190 || (c < 2406 - ? (c < 2275 - ? (c >= 2200 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c < 2534 - ? (c >= 2527 && c <= 2531) - : c <= 2545))))))) - : (c <= 2556 || (c < 2631 - ? (c < 2602 - ? (c < 2565 - ? (c < 2561 - ? c == 2558 - : c <= 2563) - : (c <= 2570 || (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))) - : (c <= 2632 || (c < 2689 - ? (c < 2649 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641) - : (c <= 2652 || (c < 2662 - ? c == 2654 - : c <= 2677))) - : (c <= 2691 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739))))))))))) - : (c <= 2745 || (c < 3165 - ? (c < 2949 - ? (c < 2858 - ? (c < 2790 - ? (c < 2763 - ? (c < 2759 - ? (c >= 2748 && c <= 2757) - : c <= 2761) - : (c <= 2765 || (c < 2784 - ? c == 2768 - : c <= 2787))) - : (c <= 2799 || (c < 2821 - ? (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819) - : (c <= 2828 || (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856))))) - : (c <= 2864 || (c < 2901 - ? (c < 2876 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2884 || (c < 2891 - ? (c >= 2887 && c <= 2888) - : c <= 2893))) - : (c <= 2903 || (c < 2918 - ? (c < 2911 - ? (c >= 2908 && c <= 2909) - : c <= 2915) - : (c <= 2927 || (c < 2946 - ? c == 2929 - : c <= 2947))))))) - : (c <= 2954 || (c < 3024 - ? (c < 2979 - ? (c < 2969 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965) - : (c <= 2970 || (c < 2974 - ? c == 2972 - : c <= 2975))) - : (c <= 2980 || (c < 3006 - ? (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001) - : (c <= 3010 || (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021))))) - : (c <= 3024 || (c < 3114 - ? (c < 3072 - ? (c < 3046 - ? c == 3031 - : c <= 3055) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112))) - : (c <= 3129 || (c < 3146 - ? (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144) - : (c <= 3149 || (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162))))))))) - : (c <= 3165 || (c < 3430 - ? (c < 3285 - ? (c < 3218 - ? (c < 3200 - ? (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183) - : (c <= 3203 || (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216))) - : (c <= 3240 || (c < 3260 - ? (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257) - : (c <= 3268 || (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277))))) - : (c <= 3286 || (c < 3342 - ? (c < 3302 - ? (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3299) - : (c <= 3311 || (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3402 - ? (c < 3398 - ? (c >= 3346 && c <= 3396) - : c <= 3400) - : (c <= 3406 || (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427))))))) - : (c <= 3439 || (c < 3558 - ? (c < 3517 - ? (c < 3461 - ? (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459) - : (c <= 3478 || (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515))) - : (c <= 3517 || (c < 3535 - ? (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530) - : (c <= 3540 || (c < 3544 - ? c == 3542 - : c <= 3551))))) - : (c <= 3567 || (c < 3716 - ? (c < 3648 - ? (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642) - : (c <= 3662 || (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714))) - : (c <= 3716 || (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c < 3776 - ? (c >= 3751 && c <= 3773) - : c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 - ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 - ? (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 - ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} +static TSCharacterRange sym_identifier_character_set_1[] = { + {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, + {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, + {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, + {0x3f7, 0x481}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, + {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, + {0x712, 0x72f}, {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, + {0x824, 0x824}, {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, + {0x93d, 0x93d}, {0x950, 0x950}, {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, + {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, + {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, + {0xa5e, 0xa5e}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, + {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, + {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, + {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, + {0xbd0, 0xbd0}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, + {0xc60, 0xc61}, {0xc80, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, + {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, + {0xd54, 0xd56}, {0xd5f, 0xd61}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, + {0xe01, 0xe30}, {0xe32, 0xe32}, {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, + {0xea7, 0xeb0}, {0xeb2, 0xeb2}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, + {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, + {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, + {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, + {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, + {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, + {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, + {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, + {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, + {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, + {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, + {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, + {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, + {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, + {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, + {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, + {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, + {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, + {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, + {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, + {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, + {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, + {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, + {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, + {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, + {0xab70, 0xabe2}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, + {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, + {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, + {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, {0xffa0, 0xffbe}, + {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, + {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, + {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, + {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, + {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, + {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, + {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, + {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, + {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, + {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, + {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, + {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, + {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, + {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, + {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, + {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, + {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, + {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, + {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, + {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, + {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, + {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, + {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, + {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, + {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, + {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, + {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, + {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, + {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, + {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, + {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, +}; -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43600 - ? (c < 3776 - ? (c < 2738 - ? (c < 1984 - ? (c < 910 - ? (c < 216 - ? (c < 'a' - ? (c < '9' - ? (c < '0' - ? c == '$' - : c <= '7') - : (c <= '9' || (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_'))) - : (c <= 'z' || (c < 183 - ? (c < 181 - ? c == 170 - : c <= 181) - : (c <= 183 || (c < 192 - ? c == 186 - : c <= 214))))) - : (c <= 246 || (c < 768 - ? (c < 736 - ? (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721) - : (c <= 740 || (c < 750 - ? c == 748 - : c <= 750))) - : (c <= 884 || (c < 895 - ? (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893) - : (c <= 895 || (c < 908 - ? (c >= 902 && c <= 906) - : c <= 908))))))) - : (c <= 929 || (c < 1479 - ? (c < 1369 - ? (c < 1155 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1159 || (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366))) - : (c <= 1369 || (c < 1471 - ? (c < 1425 - ? (c >= 1376 && c <= 1416) - : c <= 1469) - : (c <= 1471 || (c < 1476 - ? (c >= 1473 && c <= 1474) - : c <= 1477))))) - : (c <= 1479 || (c < 1749 - ? (c < 1552 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1562 || (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747))) - : (c <= 1756 || (c < 1791 - ? (c < 1770 - ? (c >= 1759 && c <= 1768) - : c <= 1788) - : (c <= 1791 || (c < 1869 - ? (c >= 1808 && c <= 1866) - : c <= 1969))))))))) - : (c <= 2037 || (c < 2534 - ? (c < 2437 - ? (c < 2160 - ? (c < 2048 - ? (c < 2045 - ? c == 2042 - : c <= 2045) - : (c <= 2093 || (c < 2144 - ? (c >= 2112 && c <= 2139) - : c <= 2154))) - : (c <= 2183 || (c < 2275 - ? (c < 2200 - ? (c >= 2185 && c <= 2190) - : c <= 2273) - : (c <= 2403 || (c < 2417 - ? (c >= 2406 && c <= 2415) - : c <= 2435))))) - : (c <= 2444 || (c < 2492 - ? (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || (c < 2486 - ? c == 2482 - : c <= 2489))) - : (c <= 2500 || (c < 2519 - ? (c < 2507 - ? (c >= 2503 && c <= 2504) - : c <= 2510) - : (c <= 2519 || (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2531))))))) - : (c <= 2545 || (c < 2622 - ? (c < 2579 - ? (c < 2561 - ? (c < 2558 - ? c == 2556 - : c <= 2558) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620))))) - : (c <= 2626 || (c < 2662 - ? (c < 2641 - ? (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637) - : (c <= 2641 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654))) - : (c <= 2677 || (c < 2703 - ? (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701) - : (c <= 2705 || (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736))))))))))) - : (c <= 2739 || (c < 3160 - ? (c < 2946 - ? (c < 2835 - ? (c < 2784 - ? (c < 2759 - ? (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757) - : (c <= 2761 || (c < 2768 - ? (c >= 2763 && c <= 2765) - : c <= 2768))) - : (c <= 2787 || (c < 2817 - ? (c < 2809 - ? (c >= 2790 && c <= 2799) - : c <= 2815) - : (c <= 2819 || (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832))))) - : (c <= 2856 || (c < 2891 - ? (c < 2869 - ? (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867) - : (c <= 2873 || (c < 2887 - ? (c >= 2876 && c <= 2884) - : c <= 2888))) - : (c <= 2893 || (c < 2911 - ? (c < 2908 - ? (c >= 2901 && c <= 2903) - : c <= 2909) - : (c <= 2915 || (c < 2929 - ? (c >= 2918 && c <= 2927) - : c <= 2929))))))) - : (c <= 2947 || (c < 3018 - ? (c < 2974 - ? (c < 2962 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960) - : (c <= 2965 || (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972))) - : (c <= 2975 || (c < 2990 - ? (c < 2984 - ? (c >= 2979 && c <= 2980) - : c <= 2986) - : (c <= 3001 || (c < 3014 - ? (c >= 3006 && c <= 3010) - : c <= 3016))))) - : (c <= 3021 || (c < 3090 - ? (c < 3046 - ? (c < 3031 - ? c == 3024 - : c <= 3031) - : (c <= 3055 || (c < 3086 - ? (c >= 3072 && c <= 3084) - : c <= 3088))) - : (c <= 3112 || (c < 3142 - ? (c < 3132 - ? (c >= 3114 && c <= 3129) - : c <= 3140) - : (c <= 3144 || (c < 3157 - ? (c >= 3146 && c <= 3149) - : c <= 3158))))))))) - : (c <= 3162 || (c < 3423 - ? (c < 3274 - ? (c < 3214 - ? (c < 3174 - ? (c < 3168 - ? c == 3165 - : c <= 3171) - : (c <= 3183 || (c < 3205 - ? (c >= 3200 && c <= 3203) - : c <= 3212))) - : (c <= 3216 || (c < 3253 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251) - : (c <= 3257 || (c < 3270 - ? (c >= 3260 && c <= 3268) - : c <= 3272))))) - : (c <= 3277 || (c < 3328 - ? (c < 3296 - ? (c < 3293 - ? (c >= 3285 && c <= 3286) - : c <= 3294) - : (c <= 3299 || (c < 3313 - ? (c >= 3302 && c <= 3311) - : c <= 3314))) - : (c <= 3340 || (c < 3398 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3396) - : (c <= 3400 || (c < 3412 - ? (c >= 3402 && c <= 3406) - : c <= 3415))))))) - : (c <= 3427 || (c < 3544 - ? (c < 3507 - ? (c < 3457 - ? (c < 3450 - ? (c >= 3430 && c <= 3439) - : c <= 3455) - : (c <= 3459 || (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505))) - : (c <= 3515 || (c < 3530 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3530 || (c < 3542 - ? (c >= 3535 && c <= 3540) - : c <= 3542))))) - : (c <= 3551 || (c < 3713 - ? (c < 3585 - ? (c < 3570 - ? (c >= 3558 && c <= 3567) - : c <= 3571) - : (c <= 3642 || (c < 3664 - ? (c >= 3648 && c <= 3662) - : c <= 3673))) - : (c <= 3714 || (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3773))))))))))))) - : (c <= 3780 || (c < 8016 - ? (c < 5870 - ? (c < 4682 - ? (c < 3913 - ? (c < 3864 - ? (c < 3792 - ? (c < 3784 - ? c == 3782 - : c <= 3789) - : (c <= 3801 || (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840))) - : (c <= 3865 || (c < 3895 - ? (c < 3893 - ? (c >= 3872 && c <= 3881) - : c <= 3893) - : (c <= 3895 || (c < 3902 - ? c == 3897 - : c <= 3911))))) - : (c <= 3948 || (c < 4176 - ? (c < 3993 - ? (c < 3974 - ? (c >= 3953 && c <= 3972) - : c <= 3991) - : (c <= 4028 || (c < 4096 - ? c == 4038 - : c <= 4169))) - : (c <= 4253 || (c < 4301 - ? (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295) - : (c <= 4301 || (c < 4348 - ? (c >= 4304 && c <= 4346) - : c <= 4680))))))) - : (c <= 4685 || (c < 4824 - ? (c < 4752 - ? (c < 4698 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696) - : (c <= 4701 || (c < 4746 - ? (c >= 4704 && c <= 4744) - : c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822))))) - : (c <= 4880 || (c < 5024 - ? (c < 4957 - ? (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954) - : (c <= 4959 || (c < 4992 - ? (c >= 4969 && c <= 4977) - : c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866))))))))) - : (c <= 5880 || (c < 6656 - ? (c < 6159 - ? (c < 6002 - ? (c < 5952 - ? (c < 5919 - ? (c >= 5888 && c <= 5909) - : c <= 5940) - : (c <= 5971 || (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000))) - : (c <= 6003 || (c < 6108 - ? (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103) - : (c <= 6109 || (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157))))) - : (c <= 6169 || (c < 6448 - ? (c < 6320 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6314) - : (c <= 6389 || (c < 6432 - ? (c >= 6400 && c <= 6430) - : c <= 6443))) - : (c <= 6459 || (c < 6528 - ? (c < 6512 - ? (c >= 6470 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c < 6608 - ? (c >= 6576 && c <= 6601) - : c <= 6618))))))) - : (c <= 6683 || (c < 7168 - ? (c < 6832 - ? (c < 6783 - ? (c < 6752 - ? (c >= 6688 && c <= 6750) - : c <= 6780) - : (c <= 6793 || (c < 6823 - ? (c >= 6800 && c <= 6809) - : c <= 6823))) - : (c <= 6845 || (c < 6992 - ? (c < 6912 - ? (c >= 6847 && c <= 6862) - : c <= 6988) - : (c <= 7001 || (c < 7040 - ? (c >= 7019 && c <= 7027) - : c <= 7155))))) - : (c <= 7223 || (c < 7376 - ? (c < 7296 - ? (c < 7245 - ? (c >= 7232 && c <= 7241) - : c <= 7293) - : (c <= 7304 || (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359))) - : (c <= 7378 || (c < 7960 - ? (c < 7424 - ? (c >= 7380 && c <= 7418) - : c <= 7957) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013))))))))))) - : (c <= 8023 || (c < 11712 - ? (c < 8455 - ? (c < 8160 - ? (c < 8118 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116))) - : (c <= 8124 || (c < 8134 - ? (c < 8130 - ? c == 8126 - : c <= 8132) - : (c <= 8140 || (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155))))) - : (c <= 8172 || (c < 8319 - ? (c < 8255 - ? (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188) - : (c <= 8256 || (c < 8305 - ? c == 8276 - : c <= 8305))) - : (c <= 8319 || (c < 8417 - ? (c < 8400 - ? (c >= 8336 && c <= 8348) - : c <= 8412) - : (c <= 8417 || (c < 8450 - ? (c >= 8421 && c <= 8432) - : c <= 8450))))))) - : (c <= 8455 || (c < 11264 - ? (c < 8488 - ? (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || (c < 8486 - ? c == 8484 - : c <= 8486))) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || (c < 8544 - ? c == 8526 - : c <= 8584))))) - : (c <= 11492 || (c < 11631 - ? (c < 11559 - ? (c < 11520 - ? (c >= 11499 && c <= 11507) - : c <= 11557) - : (c <= 11559 || (c < 11568 - ? c == 11565 - : c <= 11623))) - : (c <= 11631 || (c < 11688 - ? (c < 11680 - ? (c >= 11647 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710))))))))) - : (c <= 11718 || (c < 42612 - ? (c < 12449 - ? (c < 12321 - ? (c < 11736 - ? (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734) - : (c <= 11742 || (c < 12293 - ? (c >= 11744 && c <= 11775) - : c <= 12295))) - : (c <= 12335 || (c < 12353 - ? (c < 12344 - ? (c >= 12337 && c <= 12341) - : c <= 12348) - : (c <= 12438 || (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447))))) - : (c <= 12538 || (c < 13312 - ? (c < 12593 - ? (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591) - : (c <= 12686 || (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799))) - : (c <= 19903 || (c < 42240 - ? (c < 42192 - ? (c >= 19968 && c <= 42124) - : c <= 42237) - : (c <= 42508 || (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607))))))) - : (c <= 42621 || (c < 43216 - ? (c < 42963 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783) - : (c <= 42888 || (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961))) - : (c <= 42963 || (c < 43052 - ? (c < 42994 - ? (c >= 42965 && c <= 42969) - : c <= 43047) - : (c <= 43052 || (c < 43136 - ? (c >= 43072 && c <= 43123) - : c <= 43205))))) - : (c <= 43225 || (c < 43392 - ? (c < 43261 - ? (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259) - : (c <= 43309 || (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388))) - : (c <= 43456 || (c < 43520 - ? (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518) - : (c <= 43574 || (c >= 43584 && c <= 43597))))))))))))))) - : (c <= 43609 || (c < 71453 - ? (c < 67594 - ? (c < 65343 - ? (c < 64298 - ? (c < 43868 - ? (c < 43777 - ? (c < 43739 - ? (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43714) - : (c <= 43741 || (c < 43762 - ? (c >= 43744 && c <= 43759) - : c <= 43766))) - : (c <= 43782 || (c < 43808 - ? (c < 43793 - ? (c >= 43785 && c <= 43790) - : c <= 43798) - : (c <= 43814 || (c < 43824 - ? (c >= 43816 && c <= 43822) - : c <= 43866))))) - : (c <= 43881 || (c < 55243 - ? (c < 44016 - ? (c < 44012 - ? (c >= 43888 && c <= 44010) - : c <= 44013) - : (c <= 44025 || (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238))) - : (c <= 55291 || (c < 64256 - ? (c < 64112 - ? (c >= 63744 && c <= 64109) - : c <= 64217) - : (c <= 64262 || (c < 64285 - ? (c >= 64275 && c <= 64279) - : c <= 64296))))))) - : (c <= 64310 || (c < 65056 - ? (c < 64467 - ? (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c < 64326 - ? (c >= 64323 && c <= 64324) - : c <= 64433))) - : (c <= 64605 || (c < 64914 - ? (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911) - : (c <= 64967 || (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039))))) - : (c <= 65071 || (c < 65145 - ? (c < 65137 - ? (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103) - : (c <= 65137 || (c < 65143 - ? c == 65139 - : c <= 65143))) - : (c <= 65145 || (c < 65151 - ? (c < 65149 - ? c == 65147 - : c <= 65149) - : (c <= 65276 || (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338))))))))) - : (c <= 65343 || (c < 66504 - ? (c < 65616 - ? (c < 65498 - ? (c < 65474 - ? (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c < 65599 - ? (c >= 65596 && c <= 65597) - : c <= 65613))))) - : (c <= 65629 || (c < 66272 - ? (c < 66045 - ? (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908) - : (c <= 66045 || (c < 66208 - ? (c >= 66176 && c <= 66204) - : c <= 66256))) - : (c <= 66272 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66426 || (c < 66464 - ? (c >= 66432 && c <= 66461) - : c <= 66499))))))) - : (c <= 66511 || (c < 66967 - ? (c < 66816 - ? (c < 66720 - ? (c < 66560 - ? (c >= 66513 && c <= 66517) - : c <= 66717) - : (c <= 66729 || (c < 66776 - ? (c >= 66736 && c <= 66771) - : c <= 66811))) - : (c <= 66855 || (c < 66940 - ? (c < 66928 - ? (c >= 66864 && c <= 66915) - : c <= 66938) - : (c <= 66954 || (c < 66964 - ? (c >= 66956 && c <= 66962) - : c <= 66965))))) - : (c <= 66977 || (c < 67424 - ? (c < 67003 - ? (c < 66995 - ? (c >= 66979 && c <= 66993) - : c <= 67001) - : (c <= 67004 || (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413))) - : (c <= 67431 || (c < 67506 - ? (c < 67463 - ? (c >= 67456 && c <= 67461) - : c <= 67504) - : (c <= 67514 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))))))))))) - : (c <= 67637 || (c < 69942 - ? (c < 68416 - ? (c < 68096 - ? (c < 67808 - ? (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))) - : (c <= 67826 || (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))))) - : (c <= 68099 || (c < 68159 - ? (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c < 68152 - ? (c >= 68121 && c <= 68149) - : c <= 68154))) - : (c <= 68159 || (c < 68288 - ? (c < 68224 - ? (c >= 68192 && c <= 68220) - : c <= 68252) - : (c <= 68295 || (c < 68352 - ? (c >= 68297 && c <= 68326) - : c <= 68405))))))) - : (c <= 68437 || (c < 69415 - ? (c < 68864 - ? (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68903 || (c < 69291 - ? (c < 69248 - ? (c >= 68912 && c <= 68921) - : c <= 69289) - : (c <= 69292 || (c < 69376 - ? (c >= 69296 && c <= 69297) - : c <= 69404))))) - : (c <= 69415 || (c < 69734 - ? (c < 69552 - ? (c < 69488 - ? (c >= 69424 && c <= 69456) - : c <= 69509) - : (c <= 69572 || (c < 69632 - ? (c >= 69600 && c <= 69622) - : c <= 69702))) - : (c <= 69749 || (c < 69840 - ? (c < 69826 - ? (c >= 69759 && c <= 69818) - : c <= 69826) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))))))))) - : (c <= 69951 || (c < 70453 - ? (c < 70280 - ? (c < 70094 - ? (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))) - : (c <= 70106 || (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))))) - : (c <= 70280 || (c < 70400 - ? (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c < 70384 - ? (c >= 70320 && c <= 70378) - : c <= 70393))) - : (c <= 70403 || (c < 70419 - ? (c < 70415 - ? (c >= 70405 && c <= 70412) - : c <= 70416) - : (c <= 70440 || (c < 70450 - ? (c >= 70442 && c <= 70448) - : c <= 70451))))))) - : (c <= 70457 || (c < 70784 - ? (c < 70493 - ? (c < 70475 - ? (c < 70471 - ? (c >= 70459 && c <= 70468) - : c <= 70472) - : (c <= 70477 || (c < 70487 - ? c == 70480 - : c <= 70487))) - : (c <= 70499 || (c < 70656 - ? (c < 70512 - ? (c >= 70502 && c <= 70508) - : c <= 70516) - : (c <= 70730 || (c < 70750 - ? (c >= 70736 && c <= 70745) - : c <= 70753))))) - : (c <= 70853 || (c < 71168 - ? (c < 71040 - ? (c < 70864 - ? c == 70855 - : c <= 70873) - : (c <= 71093 || (c < 71128 - ? (c >= 71096 && c <= 71104) - : c <= 71133))) - : (c <= 71232 || (c < 71296 - ? (c < 71248 - ? c == 71236 - : c <= 71257) - : (c <= 71352 || (c < 71424 - ? (c >= 71360 && c <= 71369) - : c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 - ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} +static TSCharacterRange sym_identifier_character_set_2[] = { + {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, + {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, + {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, + {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, + {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, + {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, + {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, + {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, + {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, + {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, + {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, {0xa59, 0xa5c}, + {0xa5e, 0xa5e}, {0xa66, 0xa75}, {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, + {0xab5, 0xab9}, {0xabc, 0xac5}, {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, {0xaf9, 0xaff}, + {0xb01, 0xb03}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3c, 0xb44}, + {0xb47, 0xb48}, {0xb4b, 0xb4d}, {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, {0xb82, 0xb83}, + {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, + {0xbae, 0xbb9}, {0xbbe, 0xbc2}, {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, + {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, + {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, + {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, + {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, + {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, + {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, + {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, + {0xec6, 0xec6}, {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, + {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, + {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, + {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, + {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, {0x1369, 0x1371}, + {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, + {0x1700, 0x1715}, {0x171f, 0x1734}, {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, {0x17d7, 0x17d7}, + {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, + {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, + {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, + {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, + {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, + {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, + {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, + {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, + {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, + {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, + {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, + {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, + {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, + {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, + {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, + {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, + {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, + {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, + {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, + {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, + {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, + {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, + {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, + {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, + {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, + {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, + {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, + {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, + {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, + {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, + {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, + {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, + {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, + {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, + {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, + {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, + {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, + {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, + {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, + {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, + {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, + {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, + {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, + {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, + {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, + {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, + {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, + {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, + {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, + {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, + {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, + {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, + {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, + {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, + {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, + {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, + {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, + {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, + {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, + {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, + {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, + {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, + {0x31350, 0x323af}, {0xe0100, 0xe01ef}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(141); - if (lookahead == '!') ADVANCE(213); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(89); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(145); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(221); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '0') ADVANCE(285); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(259); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(260); - if (lookahead == '^') ADVANCE(236); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '|') ADVANCE(233); - if (lookahead == '}') ADVANCE(257); - if (lookahead == '~') ADVANCE(214); + if (eof) ADVANCE(120); + ADVANCE_MAP( + '!', 187, + '"', 286, + '#', 75, + '%', 204, + '&', 213, + '\'', 277, + '(', 124, + ')', 127, + '*', 200, + '+', 195, + ',', 126, + '-', 190, + '.', 253, + '/', 202, + '0', 259, + ':', 237, + ';', 226, + '<', 220, + '=', 236, + '>', 216, + '?', 238, + 'L', 298, + 'U', 300, + '[', 233, + '\\', 2, + ']', 234, + '^', 210, + 'u', 302, + '{', 230, + '|', 207, + '}', 231, + '~', 188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(118); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 1: - if (lookahead == '\n') SKIP(52) + if (lookahead == '\n') SKIP(43); END_STATE(); case 2: - if (lookahead == '\n') SKIP(52) - if (lookahead == '\r') SKIP(1) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(43); + if (lookahead == '\r') SKIP(1); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 3: - if (lookahead == '\n') SKIP(56) + if (lookahead == '\n') SKIP(46); END_STATE(); case 4: - if (lookahead == '\n') SKIP(56) - if (lookahead == '\r') SKIP(3) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(46); + if (lookahead == '\r') SKIP(3); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 5: - if (lookahead == '\n') SKIP(55) + if (lookahead == '\n') SKIP(45); END_STATE(); case 6: - if (lookahead == '\n') SKIP(55) - if (lookahead == '\r') SKIP(5) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(45); + if (lookahead == '\r') SKIP(5); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 7: - if (lookahead == '\n') SKIP(58) + if (lookahead == '\n') SKIP(47); END_STATE(); case 8: - if (lookahead == '\n') SKIP(58) - if (lookahead == '\r') SKIP(7) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(47); + if (lookahead == '\r') SKIP(7); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 9: - if (lookahead == '\n') SKIP(54) + if (lookahead == '\n') SKIP(49); END_STATE(); case 10: - if (lookahead == '\n') SKIP(54) - if (lookahead == '\r') SKIP(9) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(49); + if (lookahead == '\r') SKIP(9); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 11: - if (lookahead == '\n') SKIP(60) + if (lookahead == '\n') SKIP(53); END_STATE(); case 12: - if (lookahead == '\n') SKIP(60) - if (lookahead == '\r') SKIP(11) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(53); + if (lookahead == '\r') SKIP(11); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 13: - if (lookahead == '\n') SKIP(64) + if (lookahead == '\n') SKIP(52); END_STATE(); case 14: - if (lookahead == '\n') SKIP(64) - if (lookahead == '\r') SKIP(13) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(52); + if (lookahead == '\r') SKIP(13); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 15: - if (lookahead == '\n') SKIP(65) + if (lookahead == '\n') SKIP(57); END_STATE(); case 16: - if (lookahead == '\n') SKIP(65) - if (lookahead == '\r') SKIP(15) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(57); + if (lookahead == '\r') SKIP(15); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 17: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(50); END_STATE(); case 18: - if (lookahead == '\n') SKIP(70) - if (lookahead == '\r') SKIP(17) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(50); + if (lookahead == '\r') SKIP(17); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 19: - if (lookahead == '\n') SKIP(71) + if (lookahead == '\n') SKIP(51); END_STATE(); case 20: - if (lookahead == '\n') SKIP(71) - if (lookahead == '\r') SKIP(19) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(51); + if (lookahead == '\r') SKIP(19); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 21: - if (lookahead == '\n') SKIP(62) + if (lookahead == '\n') SKIP(48); END_STATE(); case 22: - if (lookahead == '\n') SKIP(62) - if (lookahead == '\r') SKIP(21) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(48); + if (lookahead == '\r') SKIP(21); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 23: - if (lookahead == '\n') SKIP(63) + if (lookahead == '\n') SKIP(25); END_STATE(); case 24: - if (lookahead == '\n') SKIP(63) - if (lookahead == '\r') SKIP(23) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(25); + if (lookahead == '\r') SKIP(23); END_STATE(); case 25: - if (lookahead == '\n') SKIP(61) + ADVANCE_MAP( + '\n', 129, + '!', 68, + '%', 203, + '&', 212, + '(', 185, + '*', 199, + '+', 194, + '-', 189, + '/', 201, + '<', 221, + '=', 69, + '>', 217, + ); + if (lookahead == '\\') SKIP(24); + if (lookahead == '^') ADVANCE(209); + if (lookahead == '|') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(25); END_STATE(); case 26: - if (lookahead == '\n') SKIP(61) - if (lookahead == '\r') SKIP(25) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(56); END_STATE(); case 27: - if (lookahead == '\n') SKIP(66) + if (lookahead == '\n') SKIP(56); + if (lookahead == '\r') SKIP(26); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 28: - if (lookahead == '\n') SKIP(66) - if (lookahead == '\r') SKIP(27) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(54); END_STATE(); case 29: - if (lookahead == '\n') SKIP(59) + if (lookahead == '\n') SKIP(54); + if (lookahead == '\r') SKIP(28); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 30: - if (lookahead == '\n') SKIP(59) - if (lookahead == '\r') SKIP(29) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(55); + if (lookahead == '"') ADVANCE(286); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '\\') ADVANCE(31); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(290); + if (lookahead != 0) ADVANCE(291); END_STATE(); case 31: - if (lookahead == '\n') SKIP(33) + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(292); + if (lookahead == 'U') ADVANCE(116); + if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'x') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); + if (lookahead != 0) ADVANCE(292); END_STATE(); case 32: - if (lookahead == '\n') SKIP(33) - if (lookahead == '\r') SKIP(31) + if (lookahead == '\n') ADVANCE(122); + if (lookahead == '\r') ADVANCE(36); + if (lookahead == '(') ADVANCE(124); + if (lookahead == '/') ADVANCE(150); + if (lookahead == '\\') ADVANCE(145); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(66); + if (lookahead != 0) ADVANCE(152); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '!') ADVANCE(82); - if (lookahead == '%') ADVANCE(229); - if (lookahead == '&') ADVANCE(238); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(220); - if (lookahead == '-') ADVANCE(215); - if (lookahead == '/') ADVANCE(227); - if (lookahead == '<') ADVANCE(247); - if (lookahead == '=') ADVANCE(83); - if (lookahead == '>') ADVANCE(243); - if (lookahead == '\\') SKIP(32) - if (lookahead == '^') ADVANCE(235); - if (lookahead == '|') ADVANCE(234); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(33) + if (lookahead == '\n') ADVANCE(122); + if (lookahead == '\r') ADVANCE(36); + if (lookahead == '/') ADVANCE(150); + if (lookahead == '\\') ADVANCE(145); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(66); + if (lookahead != 0) ADVANCE(152); END_STATE(); case 34: - if (lookahead == '\n') SKIP(69) + if (lookahead == '\n') ADVANCE(122); + if (lookahead == '\r') ADVANCE(35); + if (lookahead == '(') ADVANCE(185); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '\\') SKIP(39); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(59); END_STATE(); case 35: - if (lookahead == '\n') SKIP(69) - if (lookahead == '\r') SKIP(34) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') ADVANCE(122); + if (lookahead == '(') ADVANCE(185); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '\\') SKIP(39); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(59); END_STATE(); case 36: - if (lookahead == '\n') SKIP(68) + if (lookahead == '\n') ADVANCE(122); + if (lookahead == '/') ADVANCE(150); + if (lookahead == '\\') ADVANCE(145); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(66); + if (lookahead != 0) ADVANCE(152); END_STATE(); case 37: - if (lookahead == '\n') SKIP(68) - if (lookahead == '\r') SKIP(36) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '\n') SKIP(58); + if (lookahead == '\'') ADVANCE(277); + if (lookahead == '/') ADVANCE(280); + if (lookahead == '\\') ADVANCE(279); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(281); + if (lookahead != 0) ADVANCE(278); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(42); - if (lookahead == '(') ADVANCE(145); - if (lookahead == '/') ADVANCE(170); - if (lookahead == '\\') ADVANCE(168); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(80) - if (lookahead != 0) ADVANCE(171); + if (lookahead == '\n') SKIP(59); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(42); - if (lookahead == '/') ADVANCE(170); - if (lookahead == '\\') ADVANCE(168); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(80) - if (lookahead != 0) ADVANCE(171); + if (lookahead == '\n') SKIP(59); + if (lookahead == '\r') SKIP(38); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(41); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '\\') SKIP(47) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(73) + if (lookahead == '\n') SKIP(44); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(143); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '\\') SKIP(47) - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(73) + if (lookahead == '\n') SKIP(44); + if (lookahead == '\r') SKIP(40); + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(143); - if (lookahead == '/') ADVANCE(170); - if (lookahead == '\\') ADVANCE(168); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(80) - if (lookahead != 0) ADVANCE(171); + if (lookahead == '\r') ADVANCE(319); + if (lookahead == '\\') ADVANCE(313); + if (lookahead != 0) ADVANCE(318); END_STATE(); case 43: - if (lookahead == '\n') SKIP(67) - if (lookahead == '"') ADVANCE(312); - if (lookahead == '/') ADVANCE(313); - if (lookahead == '\\') ADVANCE(44); + ADVANCE_MAP( + '!', 187, + '"', 286, + '#', 75, + '%', 204, + '&', 213, + '\'', 277, + '(', 185, + ')', 127, + '*', 200, + '+', 195, + ',', 126, + '-', 190, + '.', 253, + '/', 202, + '0', 259, + ':', 237, + ';', 226, + '<', 220, + '=', 236, + '>', 216, + '?', 238, + 'L', 298, + 'U', 300, + '[', 233, + '\\', 2, + ']', 234, + '^', 210, + 'u', 302, + '{', 230, + '|', 207, + '}', 231, + '~', 188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(316); - if (lookahead != 0) ADVANCE(317); + lookahead == ' ') SKIP(43); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 44: - if (lookahead == '\n') ADVANCE(319); - if (lookahead == '\r') ADVANCE(318); - if (lookahead == 'U') ADVANCE(136); - if (lookahead == 'u') ADVANCE(128); - if (lookahead == 'x') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); - if (lookahead != 0) ADVANCE(318); + ADVANCE_MAP( + '!', 187, + '"', 286, + '#', 83, + '%', 204, + '&', 213, + '\'', 277, + '(', 185, + ')', 127, + '*', 200, + '+', 195, + ',', 126, + '-', 190, + '.', 253, + '/', 202, + '0', 259, + ':', 237, + ';', 226, + '<', 220, + '=', 236, + '>', 216, + '?', 238, + 'L', 298, + 'U', 300, + '[', 232, + '\\', 41, + ']', 234, + '^', 210, + 'u', 302, + '{', 230, + '|', 207, + '}', 231, + '~', 188, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(44); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 45: - if (lookahead == '\n') SKIP(72) - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '/') ADVANCE(306); - if (lookahead == '\\') ADVANCE(305); + ADVANCE_MAP( + '!', 186, + '"', 286, + '#', 75, + '&', 211, + '\'', 277, + '(', 185, + '*', 199, + '+', 196, + ',', 126, + '-', 191, + '.', 96, + '/', 60, + '0', 259, + ':', 67, + ';', 226, + 'L', 298, + 'U', 300, + '[', 73, + '\\', 6, + ']', 74, + 'u', 302, + '{', 230, + '~', 188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(307); - if (lookahead != 0) ADVANCE(304); + lookahead == ' ') SKIP(45); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 46: - if (lookahead == '\n') SKIP(73) + ADVANCE_MAP( + '!', 186, + '"', 286, + '#', 79, + '&', 211, + '\'', 277, + '(', 185, + ')', 127, + '*', 199, + '+', 196, + ',', 126, + '-', 191, + '.', 254, + '/', 60, + '0', 259, + ':', 237, + ';', 226, + '=', 235, + 'L', 298, + 'U', 300, + '[', 233, + '\\', 4, + ']', 234, + 'u', 302, + '{', 230, + '}', 231, + '~', 188, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(46); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 47: - if (lookahead == '\n') SKIP(73) - if (lookahead == '\r') SKIP(46) + ADVANCE_MAP( + '!', 186, + '"', 286, + '#', 77, + '&', 211, + '\'', 277, + '(', 185, + '*', 199, + '+', 196, + '-', 191, + '.', 96, + '/', 60, + '0', 259, + ';', 226, + 'L', 298, + 'U', 300, + '[', 73, + '\\', 8, + 'u', 302, + '{', 230, + '~', 188, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(47); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 48: - if (lookahead == '\n') SKIP(53) + ADVANCE_MAP( + '!', 186, + '\'', 277, + '(', 185, + ')', 127, + '+', 198, + '-', 193, + '.', 96, + '/', 60, + '0', 259, + 'L', 306, + 'U', 307, + '\\', 22, + 'u', 308, + '~', 188, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(48); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 49: - if (lookahead == '\n') SKIP(53) - if (lookahead == '\r') SKIP(48) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + ADVANCE_MAP( + '!', 68, + '"', 286, + '#', 83, + '%', 204, + '&', 213, + '(', 185, + ')', 127, + '*', 200, + '+', 197, + ',', 126, + '-', 192, + '.', 252, + '/', 202, + ':', 237, + ';', 226, + '<', 220, + '=', 236, + '>', 216, + '?', 238, + 'L', 299, + 'U', 301, + '[', 233, + '\\', 10, + ']', 234, + '^', 210, + 'u', 303, + '|', 207, + '}', 231, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(49); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 50: - if (lookahead == '\n') SKIP(57) + ADVANCE_MAP( + '!', 68, + '#', 83, + '%', 204, + '&', 213, + '(', 185, + ')', 127, + '*', 200, + '+', 197, + ',', 126, + '-', 192, + '.', 252, + '/', 202, + ':', 237, + ';', 226, + '<', 220, + '=', 236, + '>', 216, + '?', 238, + '[', 233, + '\\', 18, + ']', 234, + '^', 210, + '{', 230, + '|', 207, + '}', 231, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(50); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 51: - if (lookahead == '\n') SKIP(57) - if (lookahead == '\r') SKIP(50) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + ADVANCE_MAP( + '!', 68, + '#', 83, + '%', 204, + '&', 213, + '(', 185, + ')', 127, + '*', 200, + '+', 197, + ',', 126, + '-', 192, + '.', 251, + '/', 202, + ':', 237, + ';', 226, + '<', 220, + '=', 236, + '>', 216, + '?', 238, + '[', 232, + '\\', 20, + ']', 74, + '^', 210, + '|', 207, + '}', 231, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(51); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 52: - if (lookahead == '!') ADVANCE(213); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(89); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(221); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '0') ADVANCE(285); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(259); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(260); - if (lookahead == '^') ADVANCE(236); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '|') ADVANCE(233); - if (lookahead == '}') ADVANCE(257); - if (lookahead == '~') ADVANCE(214); + ADVANCE_MAP( + '!', 68, + '#', 80, + '%', 203, + '&', 212, + '(', 185, + ')', 127, + '*', 199, + '+', 194, + ',', 126, + '-', 189, + '/', 201, + ';', 226, + '<', 221, + '=', 236, + '>', 217, + '[', 233, + '\\', 14, + '^', 209, + '{', 230, + '|', 208, + '}', 231, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(52); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 53: - if (lookahead == '!') ADVANCE(213); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(99); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(221); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '0') ADVANCE(285); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(49); - if (lookahead == ']') ADVANCE(260); - if (lookahead == '^') ADVANCE(236); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '|') ADVANCE(233); - if (lookahead == '}') ADVANCE(257); - if (lookahead == '~') ADVANCE(214); + ADVANCE_MAP( + '!', 68, + '#', 76, + '%', 204, + '&', 213, + '(', 185, + ')', 127, + '*', 200, + '+', 197, + ',', 126, + '-', 192, + '.', 252, + '/', 202, + ':', 237, + ';', 226, + '<', 220, + '=', 236, + '>', 216, + '?', 238, + '[', 233, + '\\', 12, + '^', 210, + '{', 230, + '|', 207, + '}', 231, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(53) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(53); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 54: - if (lookahead == '!') ADVANCE(213); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(103); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(221); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '0') ADVANCE(285); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(236); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '|') ADVANCE(233); - if (lookahead == '~') ADVANCE(214); + if (lookahead == '"') ADVANCE(286); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '<') ADVANCE(70); + if (lookahead == 'L') ADVANCE(299); + if (lookahead == 'U') ADVANCE(301); + if (lookahead == '\\') ADVANCE(29); + if (lookahead == 'u') ADVANCE(303); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(54); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 55: - if (lookahead == '!') ADVANCE(212); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(89); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '&') ADVANCE(237); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(285); - if (lookahead == ':') ADVANCE(81); - if (lookahead == ';') ADVANCE(252); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(6); - if (lookahead == ']') ADVANCE(88); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '~') ADVANCE(214); + if (lookahead == '"') ADVANCE(286); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '\\') ADVANCE(31); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(55); END_STATE(); case 56: - if (lookahead == '!') ADVANCE(212); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(95); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '&') ADVANCE(237); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(285); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '=') ADVANCE(261); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(259); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(260); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '}') ADVANCE(257); - if (lookahead == '~') ADVANCE(214); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(56); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 57: - if (lookahead == '!') ADVANCE(212); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(91); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '&') ADVANCE(237); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(285); - if (lookahead == ';') ADVANCE(252); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(51); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '~') ADVANCE(214); + if (lookahead == '#') ADVANCE(78); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '[') ADVANCE(73); + if (lookahead == '\\') ADVANCE(16); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(57); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 58: - if (lookahead == '!') ADVANCE(212); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(93); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '&') ADVANCE(237); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(285); - if (lookahead == ';') ADVANCE(252); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(8); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '~') ADVANCE(214); + if (lookahead == '\'') ADVANCE(277); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '\\') ADVANCE(31); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(58); END_STATE(); case 59: - if (lookahead == '!') ADVANCE(212); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '+') ADVANCE(224); - if (lookahead == '-') ADVANCE(219); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(285); - if (lookahead == 'L') ADVANCE(333); - if (lookahead == 'U') ADVANCE(334); - if (lookahead == '\\') ADVANCE(30); - if (lookahead == 'u') ADVANCE(332); - if (lookahead == '~') ADVANCE(214); + if (lookahead == '(') ADVANCE(185); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '\\') SKIP(39); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(59); END_STATE(); case 60: - if (lookahead == '!') ADVANCE(82); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(99); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(223); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(228); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == 'L') ADVANCE(325); - if (lookahead == 'U') ADVANCE(327); - if (lookahead == '[') ADVANCE(259); - if (lookahead == '\\') ADVANCE(12); - if (lookahead == ']') ADVANCE(260); - if (lookahead == '^') ADVANCE(236); - if (lookahead == 'u') ADVANCE(329); - if (lookahead == '|') ADVANCE(233); - if (lookahead == '}') ADVANCE(257); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60) + if (lookahead == '*') ADVANCE(62); + if (lookahead == '/') ADVANCE(318); END_STATE(); case 61: - if (lookahead == '!') ADVANCE(82); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(103); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(223); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == 'L') ADVANCE(325); - if (lookahead == 'U') ADVANCE(327); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(26); - if (lookahead == '^') ADVANCE(236); - if (lookahead == 'u') ADVANCE(329); - if (lookahead == '|') ADVANCE(233); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(61) + if (lookahead == '*') ADVANCE(61); + if (lookahead == '/') ADVANCE(311); + if (lookahead != 0) ADVANCE(62); END_STATE(); case 62: - if (lookahead == '!') ADVANCE(82); - if (lookahead == '#') ADVANCE(99); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(223); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(228); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(259); - if (lookahead == '\\') ADVANCE(22); - if (lookahead == ']') ADVANCE(260); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '|') ADVANCE(233); - if (lookahead == '}') ADVANCE(257); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62) + if (lookahead == '*') ADVANCE(61); + if (lookahead != 0) ADVANCE(62); END_STATE(); case 63: - if (lookahead == '!') ADVANCE(82); - if (lookahead == '#') ADVANCE(99); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(223); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(228); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(24); - if (lookahead == ']') ADVANCE(88); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '|') ADVANCE(233); - if (lookahead == '}') ADVANCE(257); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(63) + if (lookahead == '*') ADVANCE(61); + if (lookahead != 0) ADVANCE(143); END_STATE(); case 64: - if (lookahead == '!') ADVANCE(82); - if (lookahead == '#') ADVANCE(90); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(223); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(228); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(259); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '|') ADVANCE(233); - if (lookahead == '}') ADVANCE(257); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) + if (lookahead == '.') ADVANCE(96); + if (lookahead == '0') ADVANCE(257); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(258); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); END_STATE(); case 65: - if (lookahead == '!') ADVANCE(82); - if (lookahead == '#') ADVANCE(94); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(229); - if (lookahead == '&') ADVANCE(238); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(215); - if (lookahead == '/') ADVANCE(227); - if (lookahead == '<') ADVANCE(247); - if (lookahead == '=') ADVANCE(83); - if (lookahead == '>') ADVANCE(243); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == '^') ADVANCE(235); - if (lookahead == '|') ADVANCE(234); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65) + if (lookahead == '.') ADVANCE(125); END_STATE(); case 66: - if (lookahead == '!') ADVANCE(82); - if (lookahead == '#') ADVANCE(103); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '(') ADVANCE(211); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(223); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == '[') ADVANCE(258); - if (lookahead == '\\') ADVANCE(28); - if (lookahead == ']') ADVANCE(260); - if (lookahead == '^') ADVANCE(236); - if (lookahead == '|') ADVANCE(233); + if (lookahead == '/') ADVANCE(150); + if (lookahead == '\\') ADVANCE(145); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) + lookahead == ' ') SKIP(66); + if (lookahead != 0) ADVANCE(152); END_STATE(); case 67: - if (lookahead == '"') ADVANCE(312); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '\\') ADVANCE(44); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67) + if (lookahead == ':') ADVANCE(227); END_STATE(); case 68: - if (lookahead == '"') ADVANCE(312); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '<') ADVANCE(84); - if (lookahead == 'L') ADVANCE(325); - if (lookahead == 'U') ADVANCE(327); - if (lookahead == '\\') ADVANCE(37); - if (lookahead == 'u') ADVANCE(329); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) + if (lookahead == '=') ADVANCE(215); END_STATE(); case 69: - if (lookahead == '#') ADVANCE(112); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == '}') ADVANCE(257); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(69) + if (lookahead == '=') ADVANCE(214); END_STATE(); case 70: - if (lookahead == '#') ADVANCE(96); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(18); - if (lookahead == '}') ADVANCE(257); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70) + if (lookahead == '>') ADVANCE(296); + if (lookahead == '\\') ADVANCE(71); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(70); END_STATE(); case 71: - if (lookahead == '#') ADVANCE(92); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(20); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(71) + if (lookahead == '>') ADVANCE(297); + if (lookahead == '\\') ADVANCE(71); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(70); END_STATE(); case 72: - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '\\') ADVANCE(44); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) + if (lookahead == 'U') ADVANCE(115); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 73: - if (lookahead == '(') ADVANCE(211); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '\\') SKIP(47) - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(73) + if (lookahead == '[') ADVANCE(228); END_STATE(); case 74: - if (lookahead == '*') ADVANCE(76); - if (lookahead == '/') ADVANCE(341); + if (lookahead == ']') ADVANCE(229); END_STATE(); case 75: - if (lookahead == '*') ADVANCE(75); - if (lookahead == '/') ADVANCE(337); - if (lookahead != 0) ADVANCE(76); + if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'i') ADVANCE(167); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 76: - if (lookahead == '*') ADVANCE(75); - if (lookahead != 0) ADVANCE(76); + if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'i') ADVANCE(168); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 77: - if (lookahead == '*') ADVANCE(75); - if (lookahead != 0) ADVANCE(166); + if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'i') ADVANCE(167); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 78: - if (lookahead == '.') ADVANCE(116); - if (lookahead == '0') ADVANCE(283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(284); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); + if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'i') ADVANCE(168); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 79: - if (lookahead == '.') ADVANCE(146); + if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'i') ADVANCE(167); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 80: - if (lookahead == '/') ADVANCE(170); - if (lookahead == '\\') ADVANCE(168); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(80) - if (lookahead != 0) ADVANCE(171); + if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'i') ADVANCE(168); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 81: - if (lookahead == ':') ADVANCE(253); + if (lookahead == 'd') ADVANCE(92); END_STATE(); case 82: - if (lookahead == '=') ADVANCE(241); + if (lookahead == 'd') ADVANCE(86); END_STATE(); case 83: - if (lookahead == '=') ADVANCE(240); + if (lookahead == 'e') ADVANCE(94); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(83); END_STATE(); case 84: - if (lookahead == '>') ADVANCE(322); - if (lookahead == '\\') ADVANCE(85); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(84); + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 85: - if (lookahead == '>') ADVANCE(323); - if (lookahead == '\\') ADVANCE(85); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(84); + if (lookahead == 'e') ADVANCE(89); END_STATE(); case 86: - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == 'e') ADVANCE(90); END_STATE(); case 87: - if (lookahead == '[') ADVANCE(254); + if (lookahead == 'f') ADVANCE(136); END_STATE(); case 88: - if (lookahead == ']') ADVANCE(255); + if (lookahead == 'f') ADVANCE(130); END_STATE(); case 89: - if (lookahead == 'd') ADVANCE(182); - if (lookahead == 'e') ADVANCE(204); - if (lookahead == 'i') ADVANCE(190); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + if (lookahead == 'f') ADVANCE(138); END_STATE(); case 90: - if (lookahead == 'd') ADVANCE(182); - if (lookahead == 'e') ADVANCE(204); - if (lookahead == 'i') ADVANCE(191); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + if (lookahead == 'f') ADVANCE(140); END_STATE(); case 91: - if (lookahead == 'd') ADVANCE(182); - if (lookahead == 'e') ADVANCE(207); - if (lookahead == 'i') ADVANCE(190); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + if (lookahead == 'i') ADVANCE(87); + if (lookahead == 's') ADVANCE(84); END_STATE(); case 92: - if (lookahead == 'd') ADVANCE(182); - if (lookahead == 'e') ADVANCE(207); - if (lookahead == 'i') ADVANCE(191); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(92); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + if (lookahead == 'i') ADVANCE(88); END_STATE(); case 93: - if (lookahead == 'd') ADVANCE(182); - if (lookahead == 'e') ADVANCE(206); - if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'i') ADVANCE(168); if (lookahead == '\t' || lookahead == ' ') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 94: - if (lookahead == 'd') ADVANCE(182); - if (lookahead == 'e') ADVANCE(206); - if (lookahead == 'i') ADVANCE(191); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(94); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + if (lookahead == 'l') ADVANCE(91); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 95: - if (lookahead == 'd') ADVANCE(182); - if (lookahead == 'i') ADVANCE(190); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(95); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); case 96: - if (lookahead == 'd') ADVANCE(182); - if (lookahead == 'i') ADVANCE(191); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(96); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256); END_STATE(); case 97: - if (lookahead == 'd') ADVANCE(110); - END_STATE(); - case 98: - if (lookahead == 'd') ADVANCE(102); - END_STATE(); - case 99: - if (lookahead == 'e') ADVANCE(113); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(99); - END_STATE(); - case 100: - if (lookahead == 'e') ADVANCE(155); - END_STATE(); - case 101: - if (lookahead == 'e') ADVANCE(106); - END_STATE(); - case 102: - if (lookahead == 'e') ADVANCE(107); - END_STATE(); - case 103: - if (lookahead == 'e') ADVANCE(114); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(103); - END_STATE(); - case 104: - if (lookahead == 'f') ADVANCE(158); - END_STATE(); - case 105: - if (lookahead == 'f') ADVANCE(151); - END_STATE(); - case 106: - if (lookahead == 'f') ADVANCE(161); - END_STATE(); - case 107: - if (lookahead == 'f') ADVANCE(163); - END_STATE(); - case 108: - if (lookahead == 'f') ADVANCE(157); - END_STATE(); - case 109: - if (lookahead == 'i') ADVANCE(104); - if (lookahead == 's') ADVANCE(100); - END_STATE(); - case 110: - if (lookahead == 'i') ADVANCE(105); - END_STATE(); - case 111: - if (lookahead == 'i') ADVANCE(108); - if (lookahead == 's') ADVANCE(100); - END_STATE(); - case 112: - if (lookahead == 'i') ADVANCE(191); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(112); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); - END_STATE(); - case 113: - if (lookahead == 'l') ADVANCE(109); - if (lookahead == 'n') ADVANCE(97); - END_STATE(); - case 114: - if (lookahead == 'l') ADVANCE(111); - if (lookahead == 'n') ADVANCE(97); - END_STATE(); - case 115: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); - END_STATE(); - case 116: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); - END_STATE(); - case 117: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); END_STATE(); - case 118: + case 98: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(336); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(310); END_STATE(); - case 119: + case 99: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(290); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(264); END_STATE(); - case 120: + case 100: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); END_STATE(); - case 121: + case 101: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(288); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(262); END_STATE(); - case 122: + case 102: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(292); END_STATE(); - case 123: + case 103: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(98); END_STATE(); - case 124: + case 104: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); - case 125: + case 105: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); END_STATE(); - case 126: + case 106: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); END_STATE(); - case 127: + case 107: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); END_STATE(); - case 128: + case 108: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); END_STATE(); - case 129: + case 109: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); END_STATE(); - case 130: + case 110: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108); END_STATE(); - case 131: + case 111: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109); END_STATE(); - case 132: + case 112: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); END_STATE(); - case 133: + case 113: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(131); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111); END_STATE(); - case 134: + case 114: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); END_STATE(); - case 135: + case 115: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); - case 136: + case 116: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); - END_STATE(); - case 137: - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(341); - if (lookahead == '\r') ADVANCE(345); - if (lookahead == '\\') ADVANCE(343); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); - case 138: + case 117: if (lookahead != 0 && - lookahead != '*') ADVANCE(171); + lookahead != '*') ADVANCE(152); END_STATE(); - case 139: - if (eof) ADVANCE(141); - if (lookahead == '!') ADVANCE(213); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(89); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '%') ADVANCE(230); - if (lookahead == '&') ADVANCE(239); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '+') ADVANCE(221); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(228); - if (lookahead == '0') ADVANCE(285); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '<') ADVANCE(246); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(242); - if (lookahead == '?') ADVANCE(264); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(259); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(260); - if (lookahead == '^') ADVANCE(236); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '|') ADVANCE(233); - if (lookahead == '}') ADVANCE(257); - if (lookahead == '~') ADVANCE(214); + case 118: + if (eof) ADVANCE(120); + ADVANCE_MAP( + '!', 187, + '"', 286, + '#', 75, + '%', 204, + '&', 213, + '\'', 277, + '(', 185, + ')', 127, + '*', 200, + '+', 195, + ',', 126, + '-', 190, + '.', 253, + '/', 202, + '0', 259, + ':', 237, + ';', 226, + '<', 220, + '=', 236, + '>', 216, + '?', 238, + 'L', 298, + 'U', 300, + '[', 233, + '\\', 2, + ']', 234, + '^', 210, + 'u', 302, + '{', 230, + '|', 207, + '}', 231, + '~', 188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(118); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); - case 140: - if (eof) ADVANCE(141); - if (lookahead == '!') ADVANCE(212); - if (lookahead == '"') ADVANCE(312); - if (lookahead == '#') ADVANCE(95); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(336); - if (lookahead == '&') ADVANCE(237); - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '(') ADVANCE(211); - if (lookahead == ')') ADVANCE(148); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(147); - if (lookahead == '-') ADVANCE(217); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(285); - if (lookahead == ':') ADVANCE(263); - if (lookahead == ';') ADVANCE(252); - if (lookahead == '=') ADVANCE(261); - if (lookahead == 'L') ADVANCE(324); - if (lookahead == 'U') ADVANCE(326); - if (lookahead == '[') ADVANCE(259); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(260); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == '{') ADVANCE(256); - if (lookahead == '}') ADVANCE(257); - if (lookahead == '~') ADVANCE(214); + case 119: + if (eof) ADVANCE(120); + ADVANCE_MAP( + '!', 186, + '"', 286, + '#', 79, + '&', 211, + '\'', 277, + '(', 185, + ')', 127, + '*', 199, + '+', 196, + ',', 126, + '-', 191, + '.', 254, + '/', 60, + '0', 259, + ':', 237, + ';', 226, + '=', 235, + 'L', 298, + 'U', 300, + '[', 233, + '\\', 4, + ']', 234, + 'u', 302, + '{', 230, + '}', 231, + '~', 188, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + lookahead == ' ') SKIP(119); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); - case 141: + case 120: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 142: + case 121: ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 143: + case 122: ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); - case 144: + case 123: ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 145: + case 124: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 146: + case 125: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 147: + case 126: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 148: + case 127: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 149: + case 128: ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(186); - if (lookahead == 'n') ADVANCE(180); + if (lookahead == 'd') ADVANCE(163); + if (lookahead == 'n') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 150: + case 129: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(150); + if (lookahead == '\n') ADVANCE(129); END_STATE(); - case 151: + case 130: ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); - case 152: + case 131: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 153: + case 132: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 154: + case 133: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 155: + case 134: ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); - case 156: + case 135: ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); - END_STATE(); - case 157: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - END_STATE(); - case 158: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(101); - if (lookahead == 'n') ADVANCE(98); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 159: + case 136: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(188); - if (lookahead == 'n') ADVANCE(181); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + if (lookahead == 'd') ADVANCE(85); + if (lookahead == 'n') ADVANCE(82); END_STATE(); - case 160: + case 137: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(165); + if (lookahead == 'n') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 161: + case 138: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); END_STATE(); - case 162: + case 139: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 163: + case 140: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); END_STATE(); - case 164: + case 141: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 165: + case 142: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(76); - if (lookahead == '*') ADVANCE(165); - if (lookahead == '/') ADVANCE(337); - if (lookahead == '\\') ADVANCE(172); - if (lookahead != 0) ADVANCE(166); + if (lookahead == '\n') ADVANCE(62); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '/') ADVANCE(311); + if (lookahead == '\\') ADVANCE(148); + if (lookahead != 0) ADVANCE(143); END_STATE(); - case 166: + case 143: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(76); - if (lookahead == '*') ADVANCE(165); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '\\') ADVANCE(172); - if (lookahead != 0) ADVANCE(166); + if (lookahead == '\n') ADVANCE(62); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') ADVANCE(148); + if (lookahead != 0) ADVANCE(143); END_STATE(); - case 167: + case 144: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(341); - if (lookahead == '\r') ADVANCE(338); - if (lookahead == '/') ADVANCE(339); - if (lookahead == '\\') ADVANCE(342); - if (lookahead != 0) ADVANCE(340); + if (lookahead == '\n') ADVANCE(318); + if (lookahead == '\r') ADVANCE(312); + if (lookahead == '/') ADVANCE(315); + if (lookahead == '\\') ADVANCE(314); + if (lookahead != 0) ADVANCE(316); END_STATE(); - case 168: + case 145: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(80) - if (lookahead == '\r') ADVANCE(169); - if (lookahead == '/') ADVANCE(138); - if (lookahead == '\\') ADVANCE(173); - if (lookahead != 0) ADVANCE(171); + if (lookahead == '\n') SKIP(66); + if (lookahead == '\r') ADVANCE(146); + if (lookahead == '/') ADVANCE(117); + if (lookahead == '\\') ADVANCE(147); + if (lookahead != 0) ADVANCE(152); END_STATE(); - case 169: + case 146: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(80) - if (lookahead == '/') ADVANCE(138); - if (lookahead == '\\') ADVANCE(173); - if (lookahead != 0) ADVANCE(171); + if (lookahead == '\n') SKIP(66); + if (lookahead == '/') ADVANCE(117); + if (lookahead == '\\') ADVANCE(147); + if (lookahead != 0) ADVANCE(152); END_STATE(); - case 170: + case 147: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(166); - if (lookahead == '/') ADVANCE(339); - if (lookahead == '\\') ADVANCE(173); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(171); + if (lookahead == '\r') ADVANCE(153); + if (lookahead == '/') ADVANCE(117); + if (lookahead == '\\') ADVANCE(147); + if (lookahead != 0) ADVANCE(152); END_STATE(); - case 171: + case 148: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(138); - if (lookahead == '\\') ADVANCE(173); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(171); + if (lookahead == '\r') ADVANCE(151); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') ADVANCE(148); + if (lookahead != 0) ADVANCE(143); END_STATE(); - case 172: + case 149: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '*' && - lookahead != '/' && - lookahead != '\\') ADVANCE(166); - if (lookahead == '\r') ADVANCE(175); - if (lookahead == '*') ADVANCE(165); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '\\') ADVANCE(172); + if (lookahead == '\r') ADVANCE(317); + if (lookahead == '/') ADVANCE(315); + if (lookahead == '\\') ADVANCE(314); + if (lookahead != 0) ADVANCE(316); END_STATE(); - case 173: + case 150: ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(143); + if (lookahead == '/') ADVANCE(315); + if (lookahead == '\\') ADVANCE(147); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '/' && - lookahead != '\\') ADVANCE(171); - if (lookahead == '\r') ADVANCE(176); - if (lookahead == '/') ADVANCE(138); - if (lookahead == '\\') ADVANCE(173); + lookahead != '\n') ADVANCE(152); END_STATE(); - case 174: + case 151: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '/' && - lookahead != '\\') ADVANCE(340); - if (lookahead == '\r') ADVANCE(344); - if (lookahead == '/') ADVANCE(339); - if (lookahead == '\\') ADVANCE(342); + if (lookahead == '*') ADVANCE(142); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') ADVANCE(148); + if (lookahead != 0) ADVANCE(143); END_STATE(); - case 175: + case 152: ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(117); + if (lookahead == '\\') ADVANCE(147); if (lookahead != 0 && - lookahead != '*' && - lookahead != '/' && - lookahead != '\\') ADVANCE(166); - if (lookahead == '*') ADVANCE(165); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '\\') ADVANCE(172); + lookahead != '\n') ADVANCE(152); END_STATE(); - case 176: + case 153: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '/' && - lookahead != '\\') ADVANCE(171); - if (lookahead == '/') ADVANCE(138); - if (lookahead == '\\') ADVANCE(173); + if (lookahead == '/') ADVANCE(117); + if (lookahead == '\\') ADVANCE(147); + if (lookahead != 0) ADVANCE(152); END_STATE(); - case 177: + case 154: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(205); + if (lookahead == 'c') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 178: + case 155: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(202); + if (lookahead == 'd') ADVANCE(178); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 179: + case 156: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(185); + if (lookahead == 'd') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 180: + case 157: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(187); + if (lookahead == 'd') ADVANCE(164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 181: + case 158: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(189); + if (lookahead == 'd') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 182: + case 159: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'e') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 183: + case 160: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(156); + if (lookahead == 'e') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 184: + case 161: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'e') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 185: + case 162: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'e') ADVANCE(121); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 186: + case 163: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'e') ADVANCE(172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 187: + case 164: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'e') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 188: + case 165: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'e') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 189: + case 166: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'e') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 190: + case 167: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(149); - if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'f') ADVANCE(128); + if (lookahead == 'n') ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 191: + case 168: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(149); + if (lookahead == 'f') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 192: + case 169: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(200); + if (lookahead == 'f') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 193: + case 170: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(159); + if (lookahead == 'f') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 194: + case 171: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(152); + if (lookahead == 'f') ADVANCE(131); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 195: + case 172: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(153); + if (lookahead == 'f') ADVANCE(132); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 196: + case 173: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(154); + if (lookahead == 'f') ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 197: + case 174: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(162); + if (lookahead == 'f') ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 198: + case 175: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(164); + if (lookahead == 'f') ADVANCE(141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 199: + case 176: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(160); + if (lookahead == 'i') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 200: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(208); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); - END_STATE(); - case 201: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(193); - if (lookahead == 's') ADVANCE(183); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); - END_STATE(); - case 202: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(194); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); - END_STATE(); - case 203: + case 177: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 's') ADVANCE(183); + if (lookahead == 'i') ADVANCE(170); + if (lookahead == 's') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 204: + case 178: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(201); - if (lookahead == 'n') ADVANCE(178); + if (lookahead == 'i') ADVANCE(171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 205: + case 179: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(209); + if (lookahead == 'l') ADVANCE(177); + if (lookahead == 'n') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 206: + case 180: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(203); - if (lookahead == 'n') ADVANCE(178); + if (lookahead == 'l') ADVANCE(183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 207: + case 181: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(178); + if (lookahead == 'n') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 208: + case 182: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(184); + if (lookahead == 'n') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 209: + case 183: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(179); + if (lookahead == 'u') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 210: + case 184: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 211: + case 185: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 212: + case 186: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 213: + case 187: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(241); + if (lookahead == '=') ADVANCE(215); END_STATE(); - case 214: + case 188: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 215: + case 189: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 216: + case 190: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(275); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '0') ADVANCE(285); - if (lookahead == '=') ADVANCE(269); - if (lookahead == '>') ADVANCE(281); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (lookahead == '-') ADVANCE(249); + if (lookahead == '.') ADVANCE(96); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '=') ADVANCE(243); + if (lookahead == '>') ADVANCE(255); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); - case 217: + case 191: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(275); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '0') ADVANCE(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (lookahead == '-') ADVANCE(249); + if (lookahead == '.') ADVANCE(96); + if (lookahead == '0') ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); - case 218: + case 192: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(275); - if (lookahead == '=') ADVANCE(269); - if (lookahead == '>') ADVANCE(281); + if (lookahead == '-') ADVANCE(249); + if (lookahead == '=') ADVANCE(243); + if (lookahead == '>') ADVANCE(255); END_STATE(); - case 219: + case 193: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '0') ADVANCE(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (lookahead == '.') ADVANCE(96); + if (lookahead == '0') ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); - case 220: + case 194: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 221: + case 195: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(276); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '0') ADVANCE(285); - if (lookahead == '=') ADVANCE(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (lookahead == '+') ADVANCE(250); + if (lookahead == '.') ADVANCE(96); + if (lookahead == '0') ADVANCE(259); + if (lookahead == '=') ADVANCE(242); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); - case 222: + case 196: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(276); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '0') ADVANCE(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (lookahead == '+') ADVANCE(250); + if (lookahead == '.') ADVANCE(96); + if (lookahead == '0') ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); - case 223: + case 197: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(276); - if (lookahead == '=') ADVANCE(268); + if (lookahead == '+') ADVANCE(250); + if (lookahead == '=') ADVANCE(242); END_STATE(); - case 224: + case 198: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '0') ADVANCE(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (lookahead == '.') ADVANCE(96); + if (lookahead == '0') ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); - case 225: + case 199: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 226: + case 200: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(265); + if (lookahead == '=') ADVANCE(239); END_STATE(); - case 227: + case 201: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(76); - if (lookahead == '/') ADVANCE(341); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '/') ADVANCE(318); END_STATE(); - case 228: + case 202: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(76); - if (lookahead == '/') ADVANCE(341); - if (lookahead == '=') ADVANCE(266); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '/') ADVANCE(318); + if (lookahead == '=') ADVANCE(240); END_STATE(); - case 229: + case 203: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 230: + case 204: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(267); + if (lookahead == '=') ADVANCE(241); END_STATE(); - case 231: + case 205: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 232: + case 206: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 233: + case 207: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(274); - if (lookahead == '|') ADVANCE(231); + if (lookahead == '=') ADVANCE(248); + if (lookahead == '|') ADVANCE(205); END_STATE(); - case 234: + case 208: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(231); + if (lookahead == '|') ADVANCE(205); END_STATE(); - case 235: + case 209: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 236: + case 210: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(273); + if (lookahead == '=') ADVANCE(247); END_STATE(); - case 237: + case 211: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 238: + case 212: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(232); + if (lookahead == '&') ADVANCE(206); END_STATE(); - case 239: + case 213: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(232); - if (lookahead == '=') ADVANCE(272); + if (lookahead == '&') ADVANCE(206); + if (lookahead == '=') ADVANCE(246); END_STATE(); - case 240: + case 214: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 241: + case 215: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 242: + case 216: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(251); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(225); END_STATE(); - case 243: + case 217: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(250); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(224); END_STATE(); - case 244: + case 218: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 245: + case 219: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 246: + case 220: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '=') ADVANCE(245); + if (lookahead == '<') ADVANCE(223); + if (lookahead == '=') ADVANCE(219); END_STATE(); - case 247: + case 221: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(248); - if (lookahead == '=') ADVANCE(245); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '=') ADVANCE(219); END_STATE(); - case 248: + case 222: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 249: + case 223: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(270); + if (lookahead == '=') ADVANCE(244); END_STATE(); - case 250: + case 224: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 251: + case 225: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(271); + if (lookahead == '=') ADVANCE(245); END_STATE(); - case 252: + case 226: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 253: + case 227: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 254: + case 228: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 255: + case 229: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 256: + case 230: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 257: + case 231: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 258: + case 232: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 259: + case 233: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(254); + if (lookahead == '[') ADVANCE(228); END_STATE(); - case 260: + case 234: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 261: + case 235: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 262: + case 236: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(240); + if (lookahead == '=') ADVANCE(214); END_STATE(); - case 263: + case 237: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 264: + case 238: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 265: + case 239: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 266: + case 240: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 267: + case 241: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 268: + case 242: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 269: + case 243: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 270: + case 244: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 271: + case 245: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 272: + case 246: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 273: + case 247: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 274: + case 248: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 275: + case 249: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 276: + case 250: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 277: + case 251: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 278: + case 252: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(79); + if (lookahead == '.') ADVANCE(65); END_STATE(); - case 279: + case 253: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); + if (lookahead == '.') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256); END_STATE(); - case 280: + case 254: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256); END_STATE(); - case 281: + case 255: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 282: + case 256: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(116); + if (lookahead == '\'') ADVANCE(96); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(295); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); - if (sym_number_literal_character_set_1(lookahead)) ADVANCE(298); + lookahead == 'p') ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(256); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(272); END_STATE(); - case 283: + case 257: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(117); - if (lookahead == '.') ADVANCE(296); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(292); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(291); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(295); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(120); - if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(293); - if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(293); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); + ADVANCE_MAP( + '\'', 97, + '.', 270, + 'B', 266, + 'b', 266, + 'E', 265, + 'e', 265, + 'P', 269, + 'p', 269, + 'X', 100, + 'x', 100, + 'A', 267, + 'C', 267, + 'a', 267, + 'c', 267, + 'D', 267, + 'F', 267, + 'd', 267, + 'f', 267, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); - case 284: + case 258: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(117); - if (lookahead == '.') ADVANCE(296); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(291); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(295); - if (lookahead == 'A' || - lookahead == 'C' || - lookahead == 'a' || - lookahead == 'c') ADVANCE(293); - if (('B' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(293); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); + ADVANCE_MAP( + '\'', 97, + '.', 270, + 'E', 265, + 'e', 265, + 'P', 269, + 'p', 269, + 'A', 267, + 'C', 267, + 'a', 267, + 'c', 267, + 'B', 267, + 'D', 267, + 'F', 267, + 'b', 267, + 'd', 267, + 'f', 267, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); - case 285: + case 259: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(115); - if (lookahead == '.') ADVANCE(296); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(294); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(78); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(295); - if (('D' <= lookahead && lookahead <= 'F') || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - ('d' <= lookahead && lookahead <= 'f') || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); + ADVANCE_MAP( + '\'', 95, + '.', 270, + 'B', 268, + 'b', 268, + 'X', 64, + 'x', 64, + 'E', 269, + 'P', 269, + 'e', 269, + 'p', 269, + 'D', 272, + 'F', 272, + 'L', 272, + 'U', 272, + 'W', 272, + 'd', 272, + 'f', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); - case 286: + case 260: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(115); - if (lookahead == '.') ADVANCE(296); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(297); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(120); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(295); - if (('D' <= lookahead && lookahead <= 'F') || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - ('d' <= lookahead && lookahead <= 'f') || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); + ADVANCE_MAP( + '\'', 95, + '.', 270, + 'B', 271, + 'b', 271, + 'X', 100, + 'x', 100, + 'E', 269, + 'P', 269, + 'e', 269, + 'p', 269, + 'D', 272, + 'F', 272, + 'L', 272, + 'U', 272, + 'W', 272, + 'd', 272, + 'f', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); END_STATE(); - case 287: + case 261: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(115); - if (lookahead == '.') ADVANCE(296); + if (lookahead == '\'') ADVANCE(95); + if (lookahead == '.') ADVANCE(270); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(295); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); - if (sym_number_literal_character_set_1(lookahead)) ADVANCE(298); + lookahead == 'p') ADVANCE(269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(272); END_STATE(); - case 288: + case 262: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(121); - if (lookahead == 'B' || - lookahead == 'D' || - lookahead == 'F' || - lookahead == 'b' || - lookahead == 'd' || - lookahead == 'f') ADVANCE(288); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); + ADVANCE_MAP( + '\'', 101, + 'B', 262, + 'D', 262, + 'F', 262, + 'b', 262, + 'd', 262, + 'f', 262, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(288); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(262); END_STATE(); - case 289: + case 263: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(119); - if (lookahead == '+' || - lookahead == '-') ADVANCE(121); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(289); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(295); - if (lookahead == 'B' || - ('D' <= lookahead && lookahead <= 'F') || - lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(290); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); + ADVANCE_MAP( + '\'', 99, + '+', 101, + '-', 101, + 'E', 263, + 'e', 263, + 'P', 269, + 'p', 269, + 'B', 264, + 'D', 264, + 'F', 264, + 'b', 264, + 'd', 264, + 'f', 264, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(290); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(264); END_STATE(); - case 290: + case 264: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(119); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(289); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(295); - if (lookahead == 'B' || - ('D' <= lookahead && lookahead <= 'F') || - lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(290); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); + ADVANCE_MAP( + '\'', 99, + 'E', 263, + 'e', 263, + 'P', 269, + 'p', 269, + 'B', 264, + 'D', 264, + 'F', 264, + 'b', 264, + 'd', 264, + 'f', 264, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(290); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(264); END_STATE(); - case 291: + case 265: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(120); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '+' || - lookahead == '-') ADVANCE(121); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(291); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(295); - if (lookahead == 'B' || - ('D' <= lookahead && lookahead <= 'F') || - lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(293); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); + ADVANCE_MAP( + '\'', 100, + '.', 270, + '+', 101, + '-', 101, + 'E', 265, + 'e', 265, + 'P', 269, + 'p', 269, + 'B', 267, + 'D', 267, + 'F', 267, + 'b', 267, + 'd', 267, + 'f', 267, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(293); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(267); END_STATE(); - case 292: + case 266: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(120); - if (lookahead == '.') ADVANCE(296); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(291); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(295); - if (lookahead == 'A' || - lookahead == 'C' || - lookahead == 'a' || - lookahead == 'c') ADVANCE(293); - if (('B' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(293); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); + ADVANCE_MAP( + '\'', 100, + '.', 270, + 'E', 265, + 'e', 265, + 'P', 269, + 'p', 269, + 'A', 267, + 'C', 267, + 'a', 267, + 'c', 267, + 'B', 267, + 'D', 267, + 'F', 267, + 'b', 267, + 'd', 267, + 'f', 267, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(258); END_STATE(); - case 293: + case 267: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(120); - if (lookahead == '.') ADVANCE(296); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(291); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(295); - if (lookahead == 'B' || - ('D' <= lookahead && lookahead <= 'F') || - lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(293); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); + ADVANCE_MAP( + '\'', 100, + '.', 270, + 'E', 265, + 'e', 265, + 'P', 269, + 'p', 269, + 'B', 267, + 'D', 267, + 'F', 267, + 'b', 267, + 'd', 267, + 'f', 267, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(293); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(267); END_STATE(); - case 294: + case 268: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '0') ADVANCE(286); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); - if (sym_number_literal_character_set_2(lookahead)) ADVANCE(298); + if (lookahead == '.') ADVANCE(96); + if (lookahead == '0') ADVANCE(260); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(272); END_STATE(); - case 295: + case 269: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '+' || - lookahead == '-') ADVANCE(121); - if (lookahead == 'B' || - lookahead == 'D' || - lookahead == 'F' || - lookahead == 'b' || - lookahead == 'd' || - lookahead == 'f') ADVANCE(288); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); + ADVANCE_MAP( + '+', 101, + '-', 101, + 'B', 262, + 'D', 262, + 'F', 262, + 'b', 262, + 'd', 262, + 'f', 262, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(288); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(262); END_STATE(); - case 296: + case 270: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(289); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(295); - if (lookahead == 'B' || - ('D' <= lookahead && lookahead <= 'F') || - lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(290); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'W' || - lookahead == 'l' || - lookahead == 'u' || - lookahead == 'w') ADVANCE(298); + ADVANCE_MAP( + 'E', 263, + 'e', 263, + 'P', 269, + 'p', 269, + 'B', 264, + 'D', 264, + 'F', 264, + 'b', 264, + 'd', 264, + 'f', 264, + 'L', 272, + 'U', 272, + 'W', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(290); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(264); END_STATE(); - case 297: + case 271: ACCEPT_TOKEN(sym_number_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); - if (sym_number_literal_character_set_2(lookahead)) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(272); END_STATE(); - case 298: + case 272: ACCEPT_TOKEN(sym_number_literal); - if (sym_number_literal_character_set_2(lookahead)) ADVANCE(298); + ADVANCE_MAP( + 'B', 272, + 'D', 272, + 'F', 272, + 'L', 272, + 'U', 272, + 'W', 272, + 'b', 272, + 'd', 272, + 'f', 272, + 'l', 272, + 'u', 272, + 'w', 272, + ); END_STATE(); - case 299: + case 273: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 300: + case 274: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 301: + case 275: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 302: + case 276: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 303: + case 277: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 304: + case 278: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 305: + case 279: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(319); - if (lookahead == '\r') ADVANCE(318); - if (lookahead == 'U') ADVANCE(136); - if (lookahead == 'u') ADVANCE(128); - if (lookahead == 'x') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); - if (lookahead != 0) ADVANCE(318); + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(292); + if (lookahead == 'U') ADVANCE(116); + if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'x') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); + if (lookahead != 0) ADVANCE(292); END_STATE(); - case 306: + case 280: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(76); - if (lookahead == '/') ADVANCE(341); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '/') ADVANCE(318); END_STATE(); - case 307: + case 281: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(44); + if (lookahead == '\\') ADVANCE(31); END_STATE(); - case 308: + case 282: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 309: + case 283: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 310: + case 284: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 311: + case 285: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 312: + case 286: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 313: + case 287: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(315); - if (lookahead == '/') ADVANCE(317); + if (lookahead == '*') ADVANCE(289); + if (lookahead == '/') ADVANCE(291); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(317); + lookahead != '\\') ADVANCE(291); END_STATE(); - case 314: + case 288: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(314); - if (lookahead == '/') ADVANCE(317); + if (lookahead == '*') ADVANCE(288); + if (lookahead == '/') ADVANCE(291); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(315); + lookahead != '\\') ADVANCE(289); END_STATE(); - case 315: + case 289: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(314); + if (lookahead == '*') ADVANCE(288); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(315); + lookahead != '\\') ADVANCE(289); END_STATE(); - case 316: + case 290: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(313); + if (lookahead == '/') ADVANCE(287); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(316); + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(290); if (lookahead != 0 && - lookahead != '\n' && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(317); + lookahead != '\\') ADVANCE(291); END_STATE(); - case 317: + case 291: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(317); + lookahead != '\\') ADVANCE(291); END_STATE(); - case 318: + case 292: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 319: + case 293: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(44); + if (lookahead == '\\') ADVANCE(31); END_STATE(); - case 320: + case 294: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(292); END_STATE(); - case 321: + case 295: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(294); END_STATE(); - case 322: + case 296: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 323: + case 297: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(322); - if (lookahead == '\\') ADVANCE(85); + if (lookahead == '>') ADVANCE(296); + if (lookahead == '\\') ADVANCE(71); if (lookahead != 0 && - lookahead != '\n') ADVANCE(84); + lookahead != '\n') ADVANCE(70); END_STATE(); - case 324: + case 298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(308); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\'') ADVANCE(299); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '"') ADVANCE(282); + if (lookahead == '\'') ADVANCE(273); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 325: + case 299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(308); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '"') ADVANCE(282); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 326: + case 300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(310); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\'') ADVANCE(301); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '\'') ADVANCE(275); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 327: + case 301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(310); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 328: + case 302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(309); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(336); - if (lookahead == '\'') ADVANCE(300); - if (lookahead == '8') ADVANCE(330); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '8') ADVANCE(304); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 329: + case 303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(309); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(336); - if (lookahead == '8') ADVANCE(331); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '"') ADVANCE(283); + if (lookahead == '8') ADVANCE(305); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 330: + case 304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(311); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\'') ADVANCE(302); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '"') ADVANCE(285); + if (lookahead == '\'') ADVANCE(276); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 331: + case 305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(311); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '"') ADVANCE(285); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 332: + case 306: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(336); - if (lookahead == '\'') ADVANCE(300); - if (lookahead == '8') ADVANCE(335); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '\'') ADVANCE(273); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 333: + case 307: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\'') ADVANCE(299); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '\'') ADVANCE(275); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 334: + case 308: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\'') ADVANCE(301); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '\'') ADVANCE(274); + if (lookahead == '8') ADVANCE(309); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 335: + case 309: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\'') ADVANCE(302); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '\'') ADVANCE(276); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 336: + case 310: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(336); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(310); END_STATE(); - case 337: + case 311: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 338: + case 312: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(341); - if (lookahead == '/') ADVANCE(339); - if (lookahead == '\\') ADVANCE(174); - if (lookahead != 0) ADVANCE(340); + if (lookahead == '\n') ADVANCE(318); + if (lookahead == '/') ADVANCE(315); + if (lookahead == '\\') ADVANCE(149); + if (lookahead != 0) ADVANCE(316); END_STATE(); - case 339: + case 313: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '\\') ADVANCE(167); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(340); + if (lookahead == '\r') ADVANCE(319); + if (lookahead == '\\') ADVANCE(313); + if (lookahead != 0) ADVANCE(318); END_STATE(); - case 340: + case 314: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(339); - if (lookahead == '\\') ADVANCE(174); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(340); + if (lookahead == '\r') ADVANCE(317); + if (lookahead == '/') ADVANCE(315); + if (lookahead == '\\') ADVANCE(314); + if (lookahead != 0) ADVANCE(316); END_STATE(); - case 341: + case 315: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(137); + if (lookahead == '*') ADVANCE(318); + if (lookahead == '\\') ADVANCE(144); if (lookahead != 0 && - lookahead != '\n') ADVANCE(341); + lookahead != '\n') ADVANCE(316); END_STATE(); - case 342: + case 316: ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(315); + if (lookahead == '\\') ADVANCE(149); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '/' && - lookahead != '\\') ADVANCE(340); - if (lookahead == '\r') ADVANCE(344); - if (lookahead == '/') ADVANCE(339); - if (lookahead == '\\') ADVANCE(342); + lookahead != '\n') ADVANCE(316); END_STATE(); - case 343: + case 317: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(341); - if (lookahead == '\r') ADVANCE(345); - if (lookahead == '\\') ADVANCE(343); + if (lookahead == '/') ADVANCE(315); + if (lookahead == '\\') ADVANCE(149); + if (lookahead != 0) ADVANCE(316); END_STATE(); - case 344: + case 318: ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(42); if (lookahead != 0 && - lookahead != '/' && - lookahead != '\\') ADVANCE(340); - if (lookahead == '/') ADVANCE(339); - if (lookahead == '\\') ADVANCE(174); + lookahead != '\n') ADVANCE(318); END_STATE(); - case 345: + case 319: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(341); - if (lookahead == '\\') ADVANCE(137); + if (lookahead == '\\') ADVANCE(42); + if (lookahead != 0) ADVANCE(318); END_STATE(); default: return false; @@ -11604,7 +7796,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'F') ADVANCE(1); if (lookahead == 'N') ADVANCE(2); if (lookahead == 'T') ADVANCE(3); - if (lookahead == '\\') SKIP(4) + if (lookahead == '\\') SKIP(4); if (lookahead == '_') ADVANCE(5); if (lookahead == 'a') ADVANCE(6); if (lookahead == 'b') ADVANCE(7); @@ -11626,7 +7818,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(23); if (lookahead == 'w') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0) + lookahead == ' ') SKIP(0); END_STATE(); case 1: if (lookahead == 'A') ADVANCE(25); @@ -11638,8 +7830,8 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(27); END_STATE(); case 4: - if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(28) + if (lookahead == '\n') SKIP(0); + if (lookahead == '\r') SKIP(28); END_STATE(); case 5: if (lookahead == 'A') ADVANCE(29); @@ -11735,7 +7927,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'U') ADVANCE(75); END_STATE(); case 28: - if (lookahead == '\n') SKIP(0) + if (lookahead == '\n') SKIP(0); END_STATE(); case 29: if (lookahead == 'l') ADVANCE(76); @@ -11748,19 +7940,21 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(79); END_STATE(); case 32: - if (lookahead == 'a') ADVANCE(80); - if (lookahead == 'b') ADVANCE(81); - if (lookahead == 'c') ADVANCE(82); - if (lookahead == 'd') ADVANCE(83); - if (lookahead == 'e') ADVANCE(84); - if (lookahead == 'f') ADVANCE(85); - if (lookahead == 'i') ADVANCE(86); - if (lookahead == 'l') ADVANCE(87); - if (lookahead == 'r') ADVANCE(88); - if (lookahead == 's') ADVANCE(89); - if (lookahead == 't') ADVANCE(90); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'v') ADVANCE(92); + ADVANCE_MAP( + 'a', 80, + 'b', 81, + 'c', 82, + 'd', 83, + 'e', 84, + 'f', 85, + 'i', 86, + 'l', 87, + 'r', 88, + 's', 89, + 't', 90, + 'u', 91, + 'v', 92, + ); END_STATE(); case 33: if (lookahead == 'l') ADVANCE(93); @@ -12434,266 +8628,268 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(318); END_STATE(); case 245: - if (lookahead == 'o') ADVANCE(319); + if (lookahead == 'a') ADVANCE(319); + if (lookahead == 'o') ADVANCE(320); END_STATE(); case 246: ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 247: - if (lookahead == '6') ADVANCE(320); + if (lookahead == '6') ADVANCE(321); END_STATE(); case 248: - if (lookahead == '2') ADVANCE(321); + if (lookahead == '2') ADVANCE(322); END_STATE(); case 249: - if (lookahead == '4') ADVANCE(322); + if (lookahead == '4') ADVANCE(323); END_STATE(); case 250: - if (lookahead == '_') ADVANCE(323); + if (lookahead == '_') ADVANCE(324); END_STATE(); case 251: - if (lookahead == 't') ADVANCE(324); + if (lookahead == 't') ADVANCE(325); END_STATE(); case 252: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(326); END_STATE(); case 253: - if (lookahead == 'n') ADVANCE(326); + if (lookahead == 'n') ADVANCE(327); END_STATE(); case 254: - if (lookahead == 'l') ADVANCE(327); + if (lookahead == 'l') ADVANCE(328); END_STATE(); case 255: - if (lookahead == 'e') ADVANCE(328); + if (lookahead == 'e') ADVANCE(329); END_STATE(); case 256: if (lookahead == 'e') ADVANCE(171); END_STATE(); case 257: - if (lookahead == 'n') ADVANCE(329); + if (lookahead == 'n') ADVANCE(330); END_STATE(); case 258: - if (lookahead == 'e') ADVANCE(330); + if (lookahead == 'e') ADVANCE(331); END_STATE(); case 259: - if (lookahead == '_') ADVANCE(331); + if (lookahead == '_') ADVANCE(332); END_STATE(); case 260: - if (lookahead == '_') ADVANCE(332); + if (lookahead == '_') ADVANCE(333); END_STATE(); case 261: - if (lookahead == '_') ADVANCE(333); + if (lookahead == '_') ADVANCE(334); END_STATE(); case 262: if (lookahead == 't') ADVANCE(171); END_STATE(); case 263: - if (lookahead == 'r') ADVANCE(334); + if (lookahead == 'r') ADVANCE(335); END_STATE(); case 264: - if (lookahead == 'l') ADVANCE(335); + if (lookahead == 'l') ADVANCE(336); END_STATE(); case 265: - if (lookahead == 'u') ADVANCE(336); + if (lookahead == 'u') ADVANCE(337); END_STATE(); case 266: - if (lookahead == 't') ADVANCE(337); + if (lookahead == 't') ADVANCE(338); END_STATE(); case 267: - if (lookahead == 't') ADVANCE(338); + if (lookahead == 't') ADVANCE(339); END_STATE(); case 268: - if (lookahead == 'f') ADVANCE(339); + if (lookahead == 'f') ADVANCE(340); END_STATE(); case 269: - if (lookahead == 't') ADVANCE(340); + if (lookahead == 't') ADVANCE(341); END_STATE(); case 270: - if (lookahead == 'i') ADVANCE(341); + if (lookahead == 'i') ADVANCE(342); END_STATE(); case 271: - if (lookahead == 'n') ADVANCE(342); + if (lookahead == 'n') ADVANCE(343); END_STATE(); case 272: ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 273: - if (lookahead == 'd') ADVANCE(343); + if (lookahead == 'd') ADVANCE(344); END_STATE(); case 274: if (lookahead == 't') ADVANCE(171); END_STATE(); case 275: - if (lookahead == 'f') ADVANCE(344); + if (lookahead == 'f') ADVANCE(345); END_STATE(); case 276: - if (lookahead == '_') ADVANCE(345); + if (lookahead == '_') ADVANCE(346); END_STATE(); case 277: - if (lookahead == 'c') ADVANCE(346); + if (lookahead == 'c') ADVANCE(347); END_STATE(); case 278: - if (lookahead == 't') ADVANCE(347); + if (lookahead == 't') ADVANCE(348); END_STATE(); case 279: - if (lookahead == 'h') ADVANCE(348); + if (lookahead == 'h') ADVANCE(349); END_STATE(); case 280: - if (lookahead == 'd') ADVANCE(349); + if (lookahead == 'd') ADVANCE(350); END_STATE(); case 281: - if (lookahead == 'e') ADVANCE(350); + if (lookahead == 'e') ADVANCE(351); END_STATE(); case 282: - if (lookahead == '6') ADVANCE(351); + if (lookahead == '6') ADVANCE(352); END_STATE(); case 283: - if (lookahead == '2') ADVANCE(352); + if (lookahead == '2') ADVANCE(353); END_STATE(); case 284: - if (lookahead == '4') ADVANCE(353); + if (lookahead == '4') ADVANCE(354); END_STATE(); case 285: - if (lookahead == '_') ADVANCE(354); + if (lookahead == '_') ADVANCE(355); END_STATE(); case 286: - if (lookahead == 't') ADVANCE(355); + if (lookahead == 't') ADVANCE(356); END_STATE(); case 287: ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 288: - if (lookahead == 'n') ADVANCE(356); + if (lookahead == 'n') ADVANCE(357); END_STATE(); case 289: - if (lookahead == 'i') ADVANCE(357); + if (lookahead == 'i') ADVANCE(358); END_STATE(); case 290: ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 291: - if (lookahead == 'o') ADVANCE(358); + if (lookahead == 'a') ADVANCE(359); + if (lookahead == 'o') ADVANCE(360); END_STATE(); case 292: - if (lookahead == 'c') ADVANCE(359); + if (lookahead == 'c') ADVANCE(361); END_STATE(); case 293: - if (lookahead == 'i') ADVANCE(360); + if (lookahead == 'i') ADVANCE(362); END_STATE(); case 294: - if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'u') ADVANCE(363); END_STATE(); case 295: - if (lookahead == 'n') ADVANCE(362); + if (lookahead == 'n') ADVANCE(364); END_STATE(); case 296: - if (lookahead == '_') ADVANCE(363); + if (lookahead == '_') ADVANCE(365); END_STATE(); case 297: - if (lookahead == 'i') ADVANCE(364); + if (lookahead == 'i') ADVANCE(366); END_STATE(); case 298: - if (lookahead == 'd') ADVANCE(365); + if (lookahead == 'd') ADVANCE(367); END_STATE(); case 299: - if (lookahead == 'l') ADVANCE(366); + if (lookahead == 'l') ADVANCE(368); END_STATE(); case 300: - if (lookahead == 'a') ADVANCE(367); + if (lookahead == 'a') ADVANCE(369); END_STATE(); case 301: - if (lookahead == 's') ADVANCE(368); + if (lookahead == 's') ADVANCE(370); END_STATE(); case 302: - if (lookahead == 'p') ADVANCE(369); + if (lookahead == 'p') ADVANCE(371); END_STATE(); case 303: - if (lookahead == 'n') ADVANCE(370); + if (lookahead == 'n') ADVANCE(372); END_STATE(); case 304: - if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'c') ADVANCE(373); END_STATE(); case 305: - if (lookahead == 'l') ADVANCE(372); + if (lookahead == 'l') ADVANCE(374); END_STATE(); case 306: - if (lookahead == 'e') ADVANCE(373); + if (lookahead == 'e') ADVANCE(375); END_STATE(); case 307: - if (lookahead == 'n') ADVANCE(374); + if (lookahead == 'n') ADVANCE(376); END_STATE(); case 308: - if (lookahead == 'e') ADVANCE(375); + if (lookahead == 'e') ADVANCE(377); END_STATE(); case 309: - if (lookahead == 'r') ADVANCE(376); + if (lookahead == 'r') ADVANCE(378); END_STATE(); case 310: ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 311: - if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'a') ADVANCE(379); END_STATE(); case 312: - if (lookahead == 'c') ADVANCE(378); + if (lookahead == 'c') ADVANCE(380); END_STATE(); case 313: - if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'a') ADVANCE(381); END_STATE(); case 314: - if (lookahead == 'i') ADVANCE(380); + if (lookahead == 'i') ADVANCE(382); END_STATE(); case 315: ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 316: - if (lookahead == 'o') ADVANCE(381); + if (lookahead == 'o') ADVANCE(383); END_STATE(); case 317: - if (lookahead == 'o') ADVANCE(382); + if (lookahead == 'o') ADVANCE(384); END_STATE(); case 318: - if (lookahead == 'g') ADVANCE(383); + if (lookahead == 'g') ADVANCE(385); END_STATE(); case 319: - if (lookahead == 'f') ADVANCE(384); + if (lookahead == 's') ADVANCE(386); END_STATE(); case 320: - if (lookahead == '_') ADVANCE(385); + if (lookahead == 'f') ADVANCE(387); END_STATE(); case 321: - if (lookahead == '_') ADVANCE(386); + if (lookahead == '_') ADVANCE(388); END_STATE(); case 322: - if (lookahead == '_') ADVANCE(387); + if (lookahead == '_') ADVANCE(389); END_STATE(); case 323: - if (lookahead == 't') ADVANCE(171); + if (lookahead == '_') ADVANCE(390); END_STATE(); case 324: - if (lookahead == 'r') ADVANCE(388); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 325: - if (lookahead == 'x') ADVANCE(389); + if (lookahead == 'r') ADVANCE(391); END_STATE(); case 326: - if (lookahead == 'u') ADVANCE(390); + if (lookahead == 'x') ADVANCE(392); END_STATE(); case 327: - if (lookahead == 't') ADVANCE(391); + if (lookahead == 'u') ADVANCE(393); END_STATE(); case 328: - if (lookahead == 'd') ADVANCE(392); + if (lookahead == 't') ADVANCE(394); END_STATE(); case 329: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'd') ADVANCE(395); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_inline); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 331: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 332: if (lookahead == 't') ADVANCE(171); @@ -12702,487 +8898,499 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(171); END_STATE(); case 334: - if (lookahead == '_') ADVANCE(393); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 335: - if (lookahead == 'i') ADVANCE(394); + if (lookahead == '_') ADVANCE(396); END_STATE(); case 336: - if (lookahead == 'r') ADVANCE(395); + if (lookahead == 'i') ADVANCE(397); END_STATE(); case 337: - if (lookahead == 'r') ADVANCE(396); + if (lookahead == 'r') ADVANCE(398); END_STATE(); case 338: - if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(399); END_STATE(); case 339: - if (lookahead == 'f') ADVANCE(398); + if (lookahead == 'o') ADVANCE(400); END_STATE(); case 340: - if (lookahead == 'e') ADVANCE(399); + if (lookahead == 'f') ADVANCE(401); END_STATE(); case 341: - if (lookahead == 'c') ADVANCE(400); + if (lookahead == 'e') ADVANCE(402); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'c') ADVANCE(403); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_signed); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_sizeof); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 345: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 349: - if (lookahead == '_') ADVANCE(401); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 350: - if (lookahead == 'f') ADVANCE(402); + if (lookahead == '_') ADVANCE(404); END_STATE(); case 351: - if (lookahead == '_') ADVANCE(403); + if (lookahead == 'f') ADVANCE(405); END_STATE(); case 352: - if (lookahead == '_') ADVANCE(404); + if (lookahead == '_') ADVANCE(406); END_STATE(); case 353: - if (lookahead == '_') ADVANCE(405); + if (lookahead == '_') ADVANCE(407); END_STATE(); case 354: - if (lookahead == 't') ADVANCE(171); + if (lookahead == '_') ADVANCE(408); END_STATE(); case 355: - if (lookahead == 'r') ADVANCE(406); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 356: - if (lookahead == 'e') ADVANCE(407); + if (lookahead == 'r') ADVANCE(409); END_STATE(); case 357: - if (lookahead == 'l') ADVANCE(408); + if (lookahead == 'e') ADVANCE(410); END_STATE(); case 358: - if (lookahead == 'f') ADVANCE(409); + if (lookahead == 'l') ADVANCE(411); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == 's') ADVANCE(412); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(410); + if (lookahead == 'f') ADVANCE(413); END_STATE(); case 361: - if (lookahead == 'r') ADVANCE(411); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 362: - if (lookahead == 'o') ADVANCE(412); + if (lookahead == 'c') ADVANCE(414); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym___asm__); + if (lookahead == 'r') ADVANCE(415); END_STATE(); case 364: - if (lookahead == 'b') ADVANCE(413); + if (lookahead == 'o') ADVANCE(416); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym___based); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 'b') ADVANCE(417); END_STATE(); case 367: - if (lookahead == 'l') ADVANCE(414); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 368: - if (lookahead == 'p') ADVANCE(415); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 369: - if (lookahead == 't') ADVANCE(416); + if (lookahead == 'l') ADVANCE(418); END_STATE(); case 370: - if (lookahead == 's') ADVANCE(417); + if (lookahead == 'p') ADVANCE(419); END_STATE(); case 371: - if (lookahead == 'a') ADVANCE(418); + if (lookahead == 't') ADVANCE(420); END_STATE(); case 372: - if (lookahead == 'l') ADVANCE(419); + if (lookahead == 's') ADVANCE(421); END_STATE(); case 373: - if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'a') ADVANCE(422); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(421); + if (lookahead == 'l') ADVANCE(423); END_STATE(); case 375: - ACCEPT_TOKEN(anon_sym___leave); + if (lookahead == 'i') ADVANCE(424); END_STATE(); case 376: - if (lookahead == 'i') ADVANCE(422); + if (lookahead == 'e') ADVANCE(425); END_STATE(); case 377: - if (lookahead == 'l') ADVANCE(423); + ACCEPT_TOKEN(anon_sym___leave); END_STATE(); case 378: - if (lookahead == 'a') ADVANCE(424); + if (lookahead == 'i') ADVANCE(426); END_STATE(); case 379: - if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'l') ADVANCE(427); END_STATE(); case 380: - if (lookahead == 'g') ADVANCE(426); + if (lookahead == 'a') ADVANCE(428); END_STATE(); case 381: - if (lookahead == 'r') ADVANCE(427); + if (lookahead == 'd') ADVANCE(429); END_STATE(); case 382: - if (lookahead == 'f') ADVANCE(428); + if (lookahead == 'g') ADVANCE(430); END_STATE(); case 383: - if (lookahead == 'n') ADVANCE(429); + if (lookahead == 'r') ADVANCE(431); END_STATE(); case 384: - ACCEPT_TOKEN(anon_sym_alignof); + if (lookahead == 'f') ADVANCE(432); END_STATE(); case 385: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'n') ADVANCE(433); END_STATE(); case 386: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_alignas); END_STATE(); case 387: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_alignof); END_STATE(); case 388: - if (lookahead == '_') ADVANCE(430); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 389: - if (lookahead == 'p') ADVANCE(431); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 390: - if (lookahead == 'e') ADVANCE(432); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == '_') ADVANCE(434); END_STATE(); case 392: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == 'p') ADVANCE(435); END_STATE(); case 393: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'e') ADVANCE(436); END_STATE(); case 394: - if (lookahead == 'g') ADVANCE(433); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 395: - if (lookahead == 'n') ADVANCE(434); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 396: - ACCEPT_TOKEN(anon_sym_nullptr); - if (lookahead == '_') ADVANCE(435); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 397: - if (lookahead == 'f') ADVANCE(436); + if (lookahead == 'g') ADVANCE(437); END_STATE(); case 398: - if (lookahead == '_') ADVANCE(437); + if (lookahead == 'n') ADVANCE(438); END_STATE(); case 399: - if (lookahead == 'r') ADVANCE(438); + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(439); END_STATE(); case 400: - if (lookahead == 't') ADVANCE(439); + if (lookahead == 'f') ADVANCE(440); END_STATE(); case 401: - if (lookahead == 'l') ADVANCE(440); + if (lookahead == '_') ADVANCE(441); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'r') ADVANCE(442); END_STATE(); case 403: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 't') ADVANCE(443); END_STATE(); case 404: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'l') ADVANCE(444); END_STATE(); case 405: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 406: - if (lookahead == '_') ADVANCE(441); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 407: - if (lookahead == 'd') ADVANCE(442); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 408: - if (lookahead == 'e') ADVANCE(443); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym__Alignof); + if (lookahead == '_') ADVANCE(445); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym__Generic); + if (lookahead == 'd') ADVANCE(446); END_STATE(); case 411: - if (lookahead == 'n') ADVANCE(444); + if (lookahead == 'e') ADVANCE(447); END_STATE(); case 412: - if (lookahead == 'f') ADVANCE(445); + ACCEPT_TOKEN(anon_sym__Alignas); END_STATE(); case 413: - if (lookahead == 'u') ADVANCE(446); + ACCEPT_TOKEN(anon_sym__Alignof); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(447); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 415: - if (lookahead == 'e') ADVANCE(448); + if (lookahead == 'n') ADVANCE(448); END_STATE(); case 416: - ACCEPT_TOKEN(anon_sym___except); + if (lookahead == 'f') ADVANCE(449); END_STATE(); case 417: - if (lookahead == 'i') ADVANCE(449); + if (lookahead == 'u') ADVANCE(450); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(450); + if (lookahead == 'l') ADVANCE(451); END_STATE(); case 419: - if (lookahead == 'y') ADVANCE(451); + if (lookahead == 'e') ADVANCE(452); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(452); + ACCEPT_TOKEN(anon_sym___except); END_STATE(); case 421: - ACCEPT_TOKEN(anon_sym___inline); - if (lookahead == '_') ADVANCE(453); + if (lookahead == 'i') ADVANCE(453); END_STATE(); case 422: - if (lookahead == 'c') ADVANCE(454); + if (lookahead == 'l') ADVANCE(454); END_STATE(); case 423: - if (lookahead == 'l') ADVANCE(455); + if (lookahead == 'y') ADVANCE(455); END_STATE(); case 424: - if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'n') ADVANCE(456); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym___thread); + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(457); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(457); + if (lookahead == 'c') ADVANCE(458); END_STATE(); case 427: - if (lookahead == 'c') ADVANCE(458); + if (lookahead == 'l') ADVANCE(459); END_STATE(); case 428: - ACCEPT_TOKEN(anon_sym__alignof); + if (lookahead == 'l') ADVANCE(460); END_STATE(); case 429: - if (lookahead == 'e') ADVANCE(459); + ACCEPT_TOKEN(anon_sym___thread); END_STATE(); case 430: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'n') ADVANCE(461); END_STATE(); case 431: - if (lookahead == 'r') ADVANCE(460); + if (lookahead == 'c') ADVANCE(462); END_STATE(); case 432: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym__alignof); END_STATE(); case 433: - if (lookahead == 'n') ADVANCE(461); + if (lookahead == 'e') ADVANCE(463); END_STATE(); case 434: - ACCEPT_TOKEN(anon_sym_noreturn); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 435: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'r') ADVANCE(464); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym_offsetof); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 437: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'n') ADVANCE(465); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); case 439: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(462); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 441: if (lookahead == 't') ADVANCE(171); END_STATE(); case 442: - ACCEPT_TOKEN(anon_sym_unsigned); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 443: - ACCEPT_TOKEN(anon_sym_volatile); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 444: - ACCEPT_TOKEN(anon_sym__Noreturn); + if (lookahead == 'o') ADVANCE(466); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym___alignof); - if (lookahead == '_') ADVANCE(463); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 446: - if (lookahead == 't') ADVANCE(464); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym___clrcall); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 448: - if (lookahead == 'c') ADVANCE(465); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 449: - if (lookahead == 'o') ADVANCE(466); + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(467); END_STATE(); case 450: - if (lookahead == 'l') ADVANCE(467); + if (lookahead == 't') ADVANCE(468); END_STATE(); case 451: - ACCEPT_TOKEN(anon_sym___finally); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 452: - if (lookahead == 'l') ADVANCE(468); + if (lookahead == 'c') ADVANCE(469); END_STATE(); case 453: - if (lookahead == '_') ADVANCE(469); + if (lookahead == 'o') ADVANCE(470); END_STATE(); case 454: - if (lookahead == 't') ADVANCE(470); + if (lookahead == 'l') ADVANCE(471); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym___stdcall); + ACCEPT_TOKEN(anon_sym___finally); END_STATE(); case 456: - if (lookahead == 'l') ADVANCE(471); + if (lookahead == 'l') ADVANCE(472); END_STATE(); case 457: - if (lookahead == 'e') ADVANCE(472); + if (lookahead == '_') ADVANCE(473); END_STATE(); case 458: - if (lookahead == 'a') ADVANCE(473); + if (lookahead == 't') ADVANCE(474); END_STATE(); case 459: - if (lookahead == 'd') ADVANCE(474); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym_constexpr); + if (lookahead == 'l') ADVANCE(475); END_STATE(); case 461: - if (lookahead == '_') ADVANCE(475); + if (lookahead == 'e') ADVANCE(476); END_STATE(); case 462: - if (lookahead == 'c') ADVANCE(476); + if (lookahead == 'a') ADVANCE(477); END_STATE(); case 463: - if (lookahead == '_') ADVANCE(477); + if (lookahead == 'd') ADVANCE(478); END_STATE(); case 464: - if (lookahead == 'e') ADVANCE(478); + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym___declspec); + if (lookahead == '_') ADVANCE(479); END_STATE(); case 466: - if (lookahead == 'n') ADVANCE(479); + if (lookahead == 'c') ADVANCE(480); END_STATE(); case 467: - ACCEPT_TOKEN(anon_sym___fastcall); + if (lookahead == '_') ADVANCE(481); END_STATE(); case 468: - if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'e') ADVANCE(482); END_STATE(); case 469: - ACCEPT_TOKEN(anon_sym___inline__); + ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); case 470: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(481); + if (lookahead == 'n') ADVANCE(483); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym___thiscall); + ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); case 472: - if (lookahead == 'd') ADVANCE(482); + if (lookahead == 'i') ADVANCE(484); END_STATE(); case 473: - if (lookahead == 'l') ADVANCE(483); + ACCEPT_TOKEN(anon_sym___inline__); END_STATE(); case 474: - ACCEPT_TOKEN(anon_sym__unaligned); + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(485); END_STATE(); case 475: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym___thiscall); END_STATE(); case 476: - if (lookahead == 'a') ADVANCE(484); + if (lookahead == 'd') ADVANCE(486); END_STATE(); case 477: - ACCEPT_TOKEN(anon_sym___alignof__); + if (lookahead == 'l') ADVANCE(487); END_STATE(); case 478: - if (lookahead == '_') ADVANCE(485); + ACCEPT_TOKEN(anon_sym__unaligned); END_STATE(); case 479: - if (lookahead == '_') ADVANCE(486); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 480: - if (lookahead == 'n') ADVANCE(487); + if (lookahead == 'a') ADVANCE(488); END_STATE(); case 481: - if (lookahead == '_') ADVANCE(488); + ACCEPT_TOKEN(anon_sym___alignof__); END_STATE(); case 482: - ACCEPT_TOKEN(anon_sym___unaligned); + if (lookahead == '_') ADVANCE(489); END_STATE(); case 483: - if (lookahead == 'l') ADVANCE(489); + if (lookahead == '_') ADVANCE(490); END_STATE(); case 484: - if (lookahead == 'l') ADVANCE(490); + if (lookahead == 'n') ADVANCE(491); END_STATE(); case 485: - if (lookahead == '_') ADVANCE(491); + if (lookahead == '_') ADVANCE(492); END_STATE(); case 486: - if (lookahead == '_') ADVANCE(492); + ACCEPT_TOKEN(anon_sym___unaligned); END_STATE(); case 487: - if (lookahead == 'e') ADVANCE(493); + if (lookahead == 'l') ADVANCE(493); END_STATE(); case 488: - ACCEPT_TOKEN(anon_sym___restrict__); + if (lookahead == 'l') ADVANCE(494); END_STATE(); case 489: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == '_') ADVANCE(495); END_STATE(); case 490: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == '_') ADVANCE(496); END_STATE(); case 491: - ACCEPT_TOKEN(anon_sym___attribute__); + if (lookahead == 'e') ADVANCE(497); END_STATE(); case 492: - ACCEPT_TOKEN(anon_sym___extension__); + ACCEPT_TOKEN(anon_sym___restrict__); END_STATE(); case 493: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 494: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 495: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 496: + ACCEPT_TOKEN(anon_sym___extension__); + END_STATE(); + case 497: ACCEPT_TOKEN(anon_sym___forceinline); END_STATE(); default: @@ -13192,2234 +9400,1986 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 140}, - [2] = {.lex_state = 55}, - [3] = {.lex_state = 55}, - [4] = {.lex_state = 55}, - [5] = {.lex_state = 55}, - [6] = {.lex_state = 55}, - [7] = {.lex_state = 55}, - [8] = {.lex_state = 55}, - [9] = {.lex_state = 55}, - [10] = {.lex_state = 55}, - [11] = {.lex_state = 55}, - [12] = {.lex_state = 58}, - [13] = {.lex_state = 58}, - [14] = {.lex_state = 55}, - [15] = {.lex_state = 58}, - [16] = {.lex_state = 58}, - [17] = {.lex_state = 58}, - [18] = {.lex_state = 58}, - [19] = {.lex_state = 58}, - [20] = {.lex_state = 58}, - [21] = {.lex_state = 58}, - [22] = {.lex_state = 58}, - [23] = {.lex_state = 58}, - [24] = {.lex_state = 58}, - [25] = {.lex_state = 58}, - [26] = {.lex_state = 58}, - [27] = {.lex_state = 58}, - [28] = {.lex_state = 140}, - [29] = {.lex_state = 140}, - [30] = {.lex_state = 140}, - [31] = {.lex_state = 140}, - [32] = {.lex_state = 140}, - [33] = {.lex_state = 140}, - [34] = {.lex_state = 140}, - [35] = {.lex_state = 57}, - [36] = {.lex_state = 140}, - [37] = {.lex_state = 140}, - [38] = {.lex_state = 140}, - [39] = {.lex_state = 140}, - [40] = {.lex_state = 140}, - [41] = {.lex_state = 57}, - [42] = {.lex_state = 140}, - [43] = {.lex_state = 140}, - [44] = {.lex_state = 140}, - [45] = {.lex_state = 140}, - [46] = {.lex_state = 140}, - [47] = {.lex_state = 140}, - [48] = {.lex_state = 140}, - [49] = {.lex_state = 140}, - [50] = {.lex_state = 140}, - [51] = {.lex_state = 57}, - [52] = {.lex_state = 140}, - [53] = {.lex_state = 140}, - [54] = {.lex_state = 55}, - [55] = {.lex_state = 55}, - [56] = {.lex_state = 55}, - [57] = {.lex_state = 55}, - [58] = {.lex_state = 55}, - [59] = {.lex_state = 58}, - [60] = {.lex_state = 58}, - [61] = {.lex_state = 58}, - [62] = {.lex_state = 58}, - [63] = {.lex_state = 58}, - [64] = {.lex_state = 140}, - [65] = {.lex_state = 140}, - [66] = {.lex_state = 140}, - [67] = {.lex_state = 57}, - [68] = {.lex_state = 140}, - [69] = {.lex_state = 140}, - [70] = {.lex_state = 140}, - [71] = {.lex_state = 57}, - [72] = {.lex_state = 140}, - [73] = {.lex_state = 57}, - [74] = {.lex_state = 140}, - [75] = {.lex_state = 57}, - [76] = {.lex_state = 140}, - [77] = {.lex_state = 57}, - [78] = {.lex_state = 140}, - [79] = {.lex_state = 140}, - [80] = {.lex_state = 140}, - [81] = {.lex_state = 140}, - [82] = {.lex_state = 140}, - [83] = {.lex_state = 140}, - [84] = {.lex_state = 140}, - [85] = {.lex_state = 140}, - [86] = {.lex_state = 140}, - [87] = {.lex_state = 140}, - [88] = {.lex_state = 140}, - [89] = {.lex_state = 140}, - [90] = {.lex_state = 55}, - [91] = {.lex_state = 55}, - [92] = {.lex_state = 55}, - [93] = {.lex_state = 55}, - [94] = {.lex_state = 140}, - [95] = {.lex_state = 55}, - [96] = {.lex_state = 55}, - [97] = {.lex_state = 55}, - [98] = {.lex_state = 55}, - [99] = {.lex_state = 55}, - [100] = {.lex_state = 55}, - [101] = {.lex_state = 55}, - [102] = {.lex_state = 55}, - [103] = {.lex_state = 55}, - [104] = {.lex_state = 55}, - [105] = {.lex_state = 140}, - [106] = {.lex_state = 55}, - [107] = {.lex_state = 55}, - [108] = {.lex_state = 55}, - [109] = {.lex_state = 55}, - [110] = {.lex_state = 55}, - [111] = {.lex_state = 55}, - [112] = {.lex_state = 55}, - [113] = {.lex_state = 55}, - [114] = {.lex_state = 55}, - [115] = {.lex_state = 55}, - [116] = {.lex_state = 55}, - [117] = {.lex_state = 55}, - [118] = {.lex_state = 55}, - [119] = {.lex_state = 55}, - [120] = {.lex_state = 55}, - [121] = {.lex_state = 55}, - [122] = {.lex_state = 55}, - [123] = {.lex_state = 55}, - [124] = {.lex_state = 55}, - [125] = {.lex_state = 55}, - [126] = {.lex_state = 55}, - [127] = {.lex_state = 55}, - [128] = {.lex_state = 55}, - [129] = {.lex_state = 55}, - [130] = {.lex_state = 55}, - [131] = {.lex_state = 55}, - [132] = {.lex_state = 55}, - [133] = {.lex_state = 55}, - [134] = {.lex_state = 55}, - [135] = {.lex_state = 55}, - [136] = {.lex_state = 55}, - [137] = {.lex_state = 55}, - [138] = {.lex_state = 55}, - [139] = {.lex_state = 55}, - [140] = {.lex_state = 55}, - [141] = {.lex_state = 55}, - [142] = {.lex_state = 55}, - [143] = {.lex_state = 55}, - [144] = {.lex_state = 55}, - [145] = {.lex_state = 55}, - [146] = {.lex_state = 55}, - [147] = {.lex_state = 55}, - [148] = {.lex_state = 55}, - [149] = {.lex_state = 58}, - [150] = {.lex_state = 55}, - [151] = {.lex_state = 55}, - [152] = {.lex_state = 55}, - [153] = {.lex_state = 55}, - [154] = {.lex_state = 55}, - [155] = {.lex_state = 55}, - [156] = {.lex_state = 55}, - [157] = {.lex_state = 55}, - [158] = {.lex_state = 55}, - [159] = {.lex_state = 55}, - [160] = {.lex_state = 55}, - [161] = {.lex_state = 58}, - [162] = {.lex_state = 58}, - [163] = {.lex_state = 58}, - [164] = {.lex_state = 58}, - [165] = {.lex_state = 58}, - [166] = {.lex_state = 58}, - [167] = {.lex_state = 58}, - [168] = {.lex_state = 58}, - [169] = {.lex_state = 58}, - [170] = {.lex_state = 58}, - [171] = {.lex_state = 58}, - [172] = {.lex_state = 58}, - [173] = {.lex_state = 58}, - [174] = {.lex_state = 58}, - [175] = {.lex_state = 58}, - [176] = {.lex_state = 58}, - [177] = {.lex_state = 58}, - [178] = {.lex_state = 58}, - [179] = {.lex_state = 58}, - [180] = {.lex_state = 58}, - [181] = {.lex_state = 58}, - [182] = {.lex_state = 58}, - [183] = {.lex_state = 58}, - [184] = {.lex_state = 58}, - [185] = {.lex_state = 58}, - [186] = {.lex_state = 58}, - [187] = {.lex_state = 58}, - [188] = {.lex_state = 58}, - [189] = {.lex_state = 58}, - [190] = {.lex_state = 58}, - [191] = {.lex_state = 58}, - [192] = {.lex_state = 58}, - [193] = {.lex_state = 58}, - [194] = {.lex_state = 58}, - [195] = {.lex_state = 58}, - [196] = {.lex_state = 58}, - [197] = {.lex_state = 58}, - [198] = {.lex_state = 58}, - [199] = {.lex_state = 58}, - [200] = {.lex_state = 58}, - [201] = {.lex_state = 58}, - [202] = {.lex_state = 58}, - [203] = {.lex_state = 58}, - [204] = {.lex_state = 140}, - [205] = {.lex_state = 58}, - [206] = {.lex_state = 58}, - [207] = {.lex_state = 58}, - [208] = {.lex_state = 58}, - [209] = {.lex_state = 58}, - [210] = {.lex_state = 140}, - [211] = {.lex_state = 58}, - [212] = {.lex_state = 58}, - [213] = {.lex_state = 58}, - [214] = {.lex_state = 58}, - [215] = {.lex_state = 58}, - [216] = {.lex_state = 58}, - [217] = {.lex_state = 58}, - [218] = {.lex_state = 58}, - [219] = {.lex_state = 58}, - [220] = {.lex_state = 58}, - [221] = {.lex_state = 58}, - [222] = {.lex_state = 58}, - [223] = {.lex_state = 58}, - [224] = {.lex_state = 58}, - [225] = {.lex_state = 58}, - [226] = {.lex_state = 58}, - [227] = {.lex_state = 58}, - [228] = {.lex_state = 57}, - [229] = {.lex_state = 58}, - [230] = {.lex_state = 58}, - [231] = {.lex_state = 140}, - [232] = {.lex_state = 140}, - [233] = {.lex_state = 140}, - [234] = {.lex_state = 140}, - [235] = {.lex_state = 140}, - [236] = {.lex_state = 140}, - [237] = {.lex_state = 140}, - [238] = {.lex_state = 140}, - [239] = {.lex_state = 140}, - [240] = {.lex_state = 140}, - [241] = {.lex_state = 140}, - [242] = {.lex_state = 140}, - [243] = {.lex_state = 140}, - [244] = {.lex_state = 140}, - [245] = {.lex_state = 140}, - [246] = {.lex_state = 140}, - [247] = {.lex_state = 140}, - [248] = {.lex_state = 140}, - [249] = {.lex_state = 140}, - [250] = {.lex_state = 140}, - [251] = {.lex_state = 140}, - [252] = {.lex_state = 140}, - [253] = {.lex_state = 140}, - [254] = {.lex_state = 140}, - [255] = {.lex_state = 140}, - [256] = {.lex_state = 140}, - [257] = {.lex_state = 140}, - [258] = {.lex_state = 140}, - [259] = {.lex_state = 140}, - [260] = {.lex_state = 140}, - [261] = {.lex_state = 140}, - [262] = {.lex_state = 140}, - [263] = {.lex_state = 57}, - [264] = {.lex_state = 140}, - [265] = {.lex_state = 57}, - [266] = {.lex_state = 140}, - [267] = {.lex_state = 57}, - [268] = {.lex_state = 57}, - [269] = {.lex_state = 57}, - [270] = {.lex_state = 140}, - [271] = {.lex_state = 57}, - [272] = {.lex_state = 57}, - [273] = {.lex_state = 57}, - [274] = {.lex_state = 57}, - [275] = {.lex_state = 57}, - [276] = {.lex_state = 140}, - [277] = {.lex_state = 140}, - [278] = {.lex_state = 140}, - [279] = {.lex_state = 140}, - [280] = {.lex_state = 140}, - [281] = {.lex_state = 140}, - [282] = {.lex_state = 140}, - [283] = {.lex_state = 140}, - [284] = {.lex_state = 140}, - [285] = {.lex_state = 57}, - [286] = {.lex_state = 57}, - [287] = {.lex_state = 140}, - [288] = {.lex_state = 140}, - [289] = {.lex_state = 140}, - [290] = {.lex_state = 140}, - [291] = {.lex_state = 140}, - [292] = {.lex_state = 140}, - [293] = {.lex_state = 57}, - [294] = {.lex_state = 140}, - [295] = {.lex_state = 140}, - [296] = {.lex_state = 57}, - [297] = {.lex_state = 140}, - [298] = {.lex_state = 140}, - [299] = {.lex_state = 57}, - [300] = {.lex_state = 57}, - [301] = {.lex_state = 140}, - [302] = {.lex_state = 57}, - [303] = {.lex_state = 140}, - [304] = {.lex_state = 53}, - [305] = {.lex_state = 140}, - [306] = {.lex_state = 140}, - [307] = {.lex_state = 140}, - [308] = {.lex_state = 57}, - [309] = {.lex_state = 57}, - [310] = {.lex_state = 57}, - [311] = {.lex_state = 140}, - [312] = {.lex_state = 57}, - [313] = {.lex_state = 57}, - [314] = {.lex_state = 53}, - [315] = {.lex_state = 140}, - [316] = {.lex_state = 57}, - [317] = {.lex_state = 57}, - [318] = {.lex_state = 57}, - [319] = {.lex_state = 140}, - [320] = {.lex_state = 57}, - [321] = {.lex_state = 57}, - [322] = {.lex_state = 57}, - [323] = {.lex_state = 140}, - [324] = {.lex_state = 140}, - [325] = {.lex_state = 57}, - [326] = {.lex_state = 140}, - [327] = {.lex_state = 57}, - [328] = {.lex_state = 57}, - [329] = {.lex_state = 140}, - [330] = {.lex_state = 57}, - [331] = {.lex_state = 57}, - [332] = {.lex_state = 57}, - [333] = {.lex_state = 140}, - [334] = {.lex_state = 57}, - [335] = {.lex_state = 57}, - [336] = {.lex_state = 57}, - [337] = {.lex_state = 57}, - [338] = {.lex_state = 57}, - [339] = {.lex_state = 140}, - [340] = {.lex_state = 140}, - [341] = {.lex_state = 57}, - [342] = {.lex_state = 140}, - [343] = {.lex_state = 57}, - [344] = {.lex_state = 140}, - [345] = {.lex_state = 140}, - [346] = {.lex_state = 140}, - [347] = {.lex_state = 140}, - [348] = {.lex_state = 140}, - [349] = {.lex_state = 140}, - [350] = {.lex_state = 140}, - [351] = {.lex_state = 140}, - [352] = {.lex_state = 140}, - [353] = {.lex_state = 140}, - [354] = {.lex_state = 57}, - [355] = {.lex_state = 140}, - [356] = {.lex_state = 57}, - [357] = {.lex_state = 140}, - [358] = {.lex_state = 57}, - [359] = {.lex_state = 57}, - [360] = {.lex_state = 57}, - [361] = {.lex_state = 57}, - [362] = {.lex_state = 140}, - [363] = {.lex_state = 140}, - [364] = {.lex_state = 140}, - [365] = {.lex_state = 57}, - [366] = {.lex_state = 57}, - [367] = {.lex_state = 57}, - [368] = {.lex_state = 57}, - [369] = {.lex_state = 57}, - [370] = {.lex_state = 57}, - [371] = {.lex_state = 140}, - [372] = {.lex_state = 57}, - [373] = {.lex_state = 57}, - [374] = {.lex_state = 57}, - [375] = {.lex_state = 140}, - [376] = {.lex_state = 140}, - [377] = {.lex_state = 57}, - [378] = {.lex_state = 57}, - [379] = {.lex_state = 140}, - [380] = {.lex_state = 140}, - [381] = {.lex_state = 57}, - [382] = {.lex_state = 140}, - [383] = {.lex_state = 140}, - [384] = {.lex_state = 140}, - [385] = {.lex_state = 140}, - [386] = {.lex_state = 140}, - [387] = {.lex_state = 140}, - [388] = {.lex_state = 140}, - [389] = {.lex_state = 140}, - [390] = {.lex_state = 140}, - [391] = {.lex_state = 140}, - [392] = {.lex_state = 140}, - [393] = {.lex_state = 57}, - [394] = {.lex_state = 140}, - [395] = {.lex_state = 140}, - [396] = {.lex_state = 57}, - [397] = {.lex_state = 57}, - [398] = {.lex_state = 57}, - [399] = {.lex_state = 140}, - [400] = {.lex_state = 140}, - [401] = {.lex_state = 57}, - [402] = {.lex_state = 57}, - [403] = {.lex_state = 140}, - [404] = {.lex_state = 57}, - [405] = {.lex_state = 57}, - [406] = {.lex_state = 140}, - [407] = {.lex_state = 140}, - [408] = {.lex_state = 140}, - [409] = {.lex_state = 140}, - [410] = {.lex_state = 140}, - [411] = {.lex_state = 140}, - [412] = {.lex_state = 140}, - [413] = {.lex_state = 140}, - [414] = {.lex_state = 140}, - [415] = {.lex_state = 140}, - [416] = {.lex_state = 140}, - [417] = {.lex_state = 140}, - [418] = {.lex_state = 140}, - [419] = {.lex_state = 140}, - [420] = {.lex_state = 140}, - [421] = {.lex_state = 140}, - [422] = {.lex_state = 140}, - [423] = {.lex_state = 140}, - [424] = {.lex_state = 140}, - [425] = {.lex_state = 140}, - [426] = {.lex_state = 140}, - [427] = {.lex_state = 140}, - [428] = {.lex_state = 140}, - [429] = {.lex_state = 140}, - [430] = {.lex_state = 140}, - [431] = {.lex_state = 140}, - [432] = {.lex_state = 140}, - [433] = {.lex_state = 140}, - [434] = {.lex_state = 140}, - [435] = {.lex_state = 54}, - [436] = {.lex_state = 140}, - [437] = {.lex_state = 140}, - [438] = {.lex_state = 140}, - [439] = {.lex_state = 140}, - [440] = {.lex_state = 140}, - [441] = {.lex_state = 140}, - [442] = {.lex_state = 140}, - [443] = {.lex_state = 140}, - [444] = {.lex_state = 140}, - [445] = {.lex_state = 140}, - [446] = {.lex_state = 140}, - [447] = {.lex_state = 140}, - [448] = {.lex_state = 140}, - [449] = {.lex_state = 140}, - [450] = {.lex_state = 140}, - [451] = {.lex_state = 140}, - [452] = {.lex_state = 140}, - [453] = {.lex_state = 140}, - [454] = {.lex_state = 140}, - [455] = {.lex_state = 140}, - [456] = {.lex_state = 140}, - [457] = {.lex_state = 53}, - [458] = {.lex_state = 140}, - [459] = {.lex_state = 140}, - [460] = {.lex_state = 140}, - [461] = {.lex_state = 140}, - [462] = {.lex_state = 140}, - [463] = {.lex_state = 140}, - [464] = {.lex_state = 140}, - [465] = {.lex_state = 140}, - [466] = {.lex_state = 140}, - [467] = {.lex_state = 140}, - [468] = {.lex_state = 140}, - [469] = {.lex_state = 140}, - [470] = {.lex_state = 140}, - [471] = {.lex_state = 140}, - [472] = {.lex_state = 140}, - [473] = {.lex_state = 140}, - [474] = {.lex_state = 140}, - [475] = {.lex_state = 140}, - [476] = {.lex_state = 140}, - [477] = {.lex_state = 140}, - [478] = {.lex_state = 140}, - [479] = {.lex_state = 140}, - [480] = {.lex_state = 140}, - [481] = {.lex_state = 140}, - [482] = {.lex_state = 140}, - [483] = {.lex_state = 140}, - [484] = {.lex_state = 140}, - [485] = {.lex_state = 140}, - [486] = {.lex_state = 140}, - [487] = {.lex_state = 140}, - [488] = {.lex_state = 140}, - [489] = {.lex_state = 140}, - [490] = {.lex_state = 140}, - [491] = {.lex_state = 140}, - [492] = {.lex_state = 140}, - [493] = {.lex_state = 140}, - [494] = {.lex_state = 140}, - [495] = {.lex_state = 140}, - [496] = {.lex_state = 140}, - [497] = {.lex_state = 140}, - [498] = {.lex_state = 140}, - [499] = {.lex_state = 140}, - [500] = {.lex_state = 53}, - [501] = {.lex_state = 53}, - [502] = {.lex_state = 54}, - [503] = {.lex_state = 140}, - [504] = {.lex_state = 53}, - [505] = {.lex_state = 140}, - [506] = {.lex_state = 60}, - [507] = {.lex_state = 60}, - [508] = {.lex_state = 60}, - [509] = {.lex_state = 60}, - [510] = {.lex_state = 60}, - [511] = {.lex_state = 60}, - [512] = {.lex_state = 60}, - [513] = {.lex_state = 60}, - [514] = {.lex_state = 60}, - [515] = {.lex_state = 60}, - [516] = {.lex_state = 60}, - [517] = {.lex_state = 60}, - [518] = {.lex_state = 140}, - [519] = {.lex_state = 140}, - [520] = {.lex_state = 140}, - [521] = {.lex_state = 140}, - [522] = {.lex_state = 140}, - [523] = {.lex_state = 140}, - [524] = {.lex_state = 140}, - [525] = {.lex_state = 140}, - [526] = {.lex_state = 140}, - [527] = {.lex_state = 140}, - [528] = {.lex_state = 140}, - [529] = {.lex_state = 140}, - [530] = {.lex_state = 140}, - [531] = {.lex_state = 140}, - [532] = {.lex_state = 140}, - [533] = {.lex_state = 140}, - [534] = {.lex_state = 64}, - [535] = {.lex_state = 64}, - [536] = {.lex_state = 64}, - [537] = {.lex_state = 64}, - [538] = {.lex_state = 140}, - [539] = {.lex_state = 64}, - [540] = {.lex_state = 64}, - [541] = {.lex_state = 64}, - [542] = {.lex_state = 64}, - [543] = {.lex_state = 64}, - [544] = {.lex_state = 65}, - [545] = {.lex_state = 65}, - [546] = {.lex_state = 65}, - [547] = {.lex_state = 65}, - [548] = {.lex_state = 65}, - [549] = {.lex_state = 65}, - [550] = {.lex_state = 65}, - [551] = {.lex_state = 65}, - [552] = {.lex_state = 64}, - [553] = {.lex_state = 65}, - [554] = {.lex_state = 65}, - [555] = {.lex_state = 65}, - [556] = {.lex_state = 65}, - [557] = {.lex_state = 140}, - [558] = {.lex_state = 140}, - [559] = {.lex_state = 65}, - [560] = {.lex_state = 140}, - [561] = {.lex_state = 140}, - [562] = {.lex_state = 70}, - [563] = {.lex_state = 140}, - [564] = {.lex_state = 140}, - [565] = {.lex_state = 70}, - [566] = {.lex_state = 71}, - [567] = {.lex_state = 140}, - [568] = {.lex_state = 140}, - [569] = {.lex_state = 140}, - [570] = {.lex_state = 71}, - [571] = {.lex_state = 140}, - [572] = {.lex_state = 140}, - [573] = {.lex_state = 140}, - [574] = {.lex_state = 140}, - [575] = {.lex_state = 140}, - [576] = {.lex_state = 140}, - [577] = {.lex_state = 140}, - [578] = {.lex_state = 140}, - [579] = {.lex_state = 140}, - [580] = {.lex_state = 140}, - [581] = {.lex_state = 140}, - [582] = {.lex_state = 140}, - [583] = {.lex_state = 140}, - [584] = {.lex_state = 140}, - [585] = {.lex_state = 140}, - [586] = {.lex_state = 140}, - [587] = {.lex_state = 140}, - [588] = {.lex_state = 140}, - [589] = {.lex_state = 70}, - [590] = {.lex_state = 71}, - [591] = {.lex_state = 140}, - [592] = {.lex_state = 140}, - [593] = {.lex_state = 140}, - [594] = {.lex_state = 140}, - [595] = {.lex_state = 140}, - [596] = {.lex_state = 140}, - [597] = {.lex_state = 140}, - [598] = {.lex_state = 140}, - [599] = {.lex_state = 140}, - [600] = {.lex_state = 140}, - [601] = {.lex_state = 140}, - [602] = {.lex_state = 64}, - [603] = {.lex_state = 140}, - [604] = {.lex_state = 140}, - [605] = {.lex_state = 140}, - [606] = {.lex_state = 140}, - [607] = {.lex_state = 140}, - [608] = {.lex_state = 140}, - [609] = {.lex_state = 140}, - [610] = {.lex_state = 140}, - [611] = {.lex_state = 140}, - [612] = {.lex_state = 140}, - [613] = {.lex_state = 140}, - [614] = {.lex_state = 140}, - [615] = {.lex_state = 140}, - [616] = {.lex_state = 140}, - [617] = {.lex_state = 140}, - [618] = {.lex_state = 140}, - [619] = {.lex_state = 140}, - [620] = {.lex_state = 140}, - [621] = {.lex_state = 140}, - [622] = {.lex_state = 140}, - [623] = {.lex_state = 140}, - [624] = {.lex_state = 140}, - [625] = {.lex_state = 140}, - [626] = {.lex_state = 140}, - [627] = {.lex_state = 140}, - [628] = {.lex_state = 140}, - [629] = {.lex_state = 140}, - [630] = {.lex_state = 140}, - [631] = {.lex_state = 140}, - [632] = {.lex_state = 140}, - [633] = {.lex_state = 140}, - [634] = {.lex_state = 140}, - [635] = {.lex_state = 140}, - [636] = {.lex_state = 140}, - [637] = {.lex_state = 140}, - [638] = {.lex_state = 140}, - [639] = {.lex_state = 140}, - [640] = {.lex_state = 140}, - [641] = {.lex_state = 140}, - [642] = {.lex_state = 140}, - [643] = {.lex_state = 60}, - [644] = {.lex_state = 140}, - [645] = {.lex_state = 140}, - [646] = {.lex_state = 140}, - [647] = {.lex_state = 140}, - [648] = {.lex_state = 140}, - [649] = {.lex_state = 140}, - [650] = {.lex_state = 140}, - [651] = {.lex_state = 140}, - [652] = {.lex_state = 140}, - [653] = {.lex_state = 140}, - [654] = {.lex_state = 140}, - [655] = {.lex_state = 140}, - [656] = {.lex_state = 140}, - [657] = {.lex_state = 140}, - [658] = {.lex_state = 140}, - [659] = {.lex_state = 140}, - [660] = {.lex_state = 140}, - [661] = {.lex_state = 140}, - [662] = {.lex_state = 140}, - [663] = {.lex_state = 140}, - [664] = {.lex_state = 140}, - [665] = {.lex_state = 140}, - [666] = {.lex_state = 140}, - [667] = {.lex_state = 140}, - [668] = {.lex_state = 140}, - [669] = {.lex_state = 140}, - [670] = {.lex_state = 140}, - [671] = {.lex_state = 140}, - [672] = {.lex_state = 140}, - [673] = {.lex_state = 140}, - [674] = {.lex_state = 140}, - [675] = {.lex_state = 140}, - [676] = {.lex_state = 140}, - [677] = {.lex_state = 140}, - [678] = {.lex_state = 140}, - [679] = {.lex_state = 140}, - [680] = {.lex_state = 140}, - [681] = {.lex_state = 140}, - [682] = {.lex_state = 140}, - [683] = {.lex_state = 140}, - [684] = {.lex_state = 140}, - [685] = {.lex_state = 140}, - [686] = {.lex_state = 140}, - [687] = {.lex_state = 140}, - [688] = {.lex_state = 140}, - [689] = {.lex_state = 140}, - [690] = {.lex_state = 140}, - [691] = {.lex_state = 140}, - [692] = {.lex_state = 140}, - [693] = {.lex_state = 140}, - [694] = {.lex_state = 140}, - [695] = {.lex_state = 140}, - [696] = {.lex_state = 140}, - [697] = {.lex_state = 140}, - [698] = {.lex_state = 140}, - [699] = {.lex_state = 140}, - [700] = {.lex_state = 140}, - [701] = {.lex_state = 140}, - [702] = {.lex_state = 140}, - [703] = {.lex_state = 140}, - [704] = {.lex_state = 140}, - [705] = {.lex_state = 140}, - [706] = {.lex_state = 140}, - [707] = {.lex_state = 140}, - [708] = {.lex_state = 140}, - [709] = {.lex_state = 140}, - [710] = {.lex_state = 140}, - [711] = {.lex_state = 140}, - [712] = {.lex_state = 140}, - [713] = {.lex_state = 140}, - [714] = {.lex_state = 140}, - [715] = {.lex_state = 140}, - [716] = {.lex_state = 140}, - [717] = {.lex_state = 140}, - [718] = {.lex_state = 140}, - [719] = {.lex_state = 140}, - [720] = {.lex_state = 140}, - [721] = {.lex_state = 140}, - [722] = {.lex_state = 140}, - [723] = {.lex_state = 140}, - [724] = {.lex_state = 140}, - [725] = {.lex_state = 140}, - [726] = {.lex_state = 140}, - [727] = {.lex_state = 140}, - [728] = {.lex_state = 140}, - [729] = {.lex_state = 140}, - [730] = {.lex_state = 140}, - [731] = {.lex_state = 140}, - [732] = {.lex_state = 140}, - [733] = {.lex_state = 140}, - [734] = {.lex_state = 140}, - [735] = {.lex_state = 140}, - [736] = {.lex_state = 140}, - [737] = {.lex_state = 140}, - [738] = {.lex_state = 140}, - [739] = {.lex_state = 140}, - [740] = {.lex_state = 140}, - [741] = {.lex_state = 140}, - [742] = {.lex_state = 140}, - [743] = {.lex_state = 140}, - [744] = {.lex_state = 140}, - [745] = {.lex_state = 140}, - [746] = {.lex_state = 140}, - [747] = {.lex_state = 140}, - [748] = {.lex_state = 140}, - [749] = {.lex_state = 140}, - [750] = {.lex_state = 140}, - [751] = {.lex_state = 140}, - [752] = {.lex_state = 140}, - [753] = {.lex_state = 140}, - [754] = {.lex_state = 140}, - [755] = {.lex_state = 140}, - [756] = {.lex_state = 140}, - [757] = {.lex_state = 140}, - [758] = {.lex_state = 140}, - [759] = {.lex_state = 140}, - [760] = {.lex_state = 140}, - [761] = {.lex_state = 140}, - [762] = {.lex_state = 140}, - [763] = {.lex_state = 140}, - [764] = {.lex_state = 140}, - [765] = {.lex_state = 140}, - [766] = {.lex_state = 140}, - [767] = {.lex_state = 64}, - [768] = {.lex_state = 64}, - [769] = {.lex_state = 60}, - [770] = {.lex_state = 64}, - [771] = {.lex_state = 64}, - [772] = {.lex_state = 64}, - [773] = {.lex_state = 60}, - [774] = {.lex_state = 60}, - [775] = {.lex_state = 60}, - [776] = {.lex_state = 60}, - [777] = {.lex_state = 60}, - [778] = {.lex_state = 60}, - [779] = {.lex_state = 62}, - [780] = {.lex_state = 62}, - [781] = {.lex_state = 62}, - [782] = {.lex_state = 62}, - [783] = {.lex_state = 62}, - [784] = {.lex_state = 62}, - [785] = {.lex_state = 62}, - [786] = {.lex_state = 62}, - [787] = {.lex_state = 62}, - [788] = {.lex_state = 62}, - [789] = {.lex_state = 140}, - [790] = {.lex_state = 140}, - [791] = {.lex_state = 140}, - [792] = {.lex_state = 62}, - [793] = {.lex_state = 64}, - [794] = {.lex_state = 64}, - [795] = {.lex_state = 62}, - [796] = {.lex_state = 62}, - [797] = {.lex_state = 64}, - [798] = {.lex_state = 62}, - [799] = {.lex_state = 62}, - [800] = {.lex_state = 62}, - [801] = {.lex_state = 64}, - [802] = {.lex_state = 62}, - [803] = {.lex_state = 64}, - [804] = {.lex_state = 64}, - [805] = {.lex_state = 64}, - [806] = {.lex_state = 62}, - [807] = {.lex_state = 64}, - [808] = {.lex_state = 62}, - [809] = {.lex_state = 62}, - [810] = {.lex_state = 62}, - [811] = {.lex_state = 62}, - [812] = {.lex_state = 64}, - [813] = {.lex_state = 64}, - [814] = {.lex_state = 64}, - [815] = {.lex_state = 62}, - [816] = {.lex_state = 64}, - [817] = {.lex_state = 64}, - [818] = {.lex_state = 64}, - [819] = {.lex_state = 62}, - [820] = {.lex_state = 62}, - [821] = {.lex_state = 64}, - [822] = {.lex_state = 64}, - [823] = {.lex_state = 64}, - [824] = {.lex_state = 62}, - [825] = {.lex_state = 64}, - [826] = {.lex_state = 64}, - [827] = {.lex_state = 64}, - [828] = {.lex_state = 64}, - [829] = {.lex_state = 64}, - [830] = {.lex_state = 62}, - [831] = {.lex_state = 62}, - [832] = {.lex_state = 62}, - [833] = {.lex_state = 63}, - [834] = {.lex_state = 64}, - [835] = {.lex_state = 62}, - [836] = {.lex_state = 63}, - [837] = {.lex_state = 62}, - [838] = {.lex_state = 60}, - [839] = {.lex_state = 63}, - [840] = {.lex_state = 64}, - [841] = {.lex_state = 63}, - [842] = {.lex_state = 62}, - [843] = {.lex_state = 62}, - [844] = {.lex_state = 64}, - [845] = {.lex_state = 61}, - [846] = {.lex_state = 61}, - [847] = {.lex_state = 61}, - [848] = {.lex_state = 60}, - [849] = {.lex_state = 61}, - [850] = {.lex_state = 61}, - [851] = {.lex_state = 61}, - [852] = {.lex_state = 140}, - [853] = {.lex_state = 64}, - [854] = {.lex_state = 64}, - [855] = {.lex_state = 64}, - [856] = {.lex_state = 64}, - [857] = {.lex_state = 61}, - [858] = {.lex_state = 61}, - [859] = {.lex_state = 64}, - [860] = {.lex_state = 64}, - [861] = {.lex_state = 64}, - [862] = {.lex_state = 64}, - [863] = {.lex_state = 64}, - [864] = {.lex_state = 64}, - [865] = {.lex_state = 60}, - [866] = {.lex_state = 60}, - [867] = {.lex_state = 64}, - [868] = {.lex_state = 60}, - [869] = {.lex_state = 60}, - [870] = {.lex_state = 60}, - [871] = {.lex_state = 60}, - [872] = {.lex_state = 64}, - [873] = {.lex_state = 140}, - [874] = {.lex_state = 60}, - [875] = {.lex_state = 62}, - [876] = {.lex_state = 62}, - [877] = {.lex_state = 62}, - [878] = {.lex_state = 62}, - [879] = {.lex_state = 62}, - [880] = {.lex_state = 60}, - [881] = {.lex_state = 62}, - [882] = {.lex_state = 62}, - [883] = {.lex_state = 62}, - [884] = {.lex_state = 62}, - [885] = {.lex_state = 62}, - [886] = {.lex_state = 62}, - [887] = {.lex_state = 62}, - [888] = {.lex_state = 64}, - [889] = {.lex_state = 64}, - [890] = {.lex_state = 66}, - [891] = {.lex_state = 64}, - [892] = {.lex_state = 64}, - [893] = {.lex_state = 64}, - [894] = {.lex_state = 64}, - [895] = {.lex_state = 64}, - [896] = {.lex_state = 64}, - [897] = {.lex_state = 64}, - [898] = {.lex_state = 64}, - [899] = {.lex_state = 64}, - [900] = {.lex_state = 64}, - [901] = {.lex_state = 62}, - [902] = {.lex_state = 66}, - [903] = {.lex_state = 64}, - [904] = {.lex_state = 66}, - [905] = {.lex_state = 66}, - [906] = {.lex_state = 66}, - [907] = {.lex_state = 66}, - [908] = {.lex_state = 66}, - [909] = {.lex_state = 66}, - [910] = {.lex_state = 64}, - [911] = {.lex_state = 66}, - [912] = {.lex_state = 66}, - [913] = {.lex_state = 66}, - [914] = {.lex_state = 66}, - [915] = {.lex_state = 66}, - [916] = {.lex_state = 66}, - [917] = {.lex_state = 66}, - [918] = {.lex_state = 66}, - [919] = {.lex_state = 66}, - [920] = {.lex_state = 66}, - [921] = {.lex_state = 66}, - [922] = {.lex_state = 66}, - [923] = {.lex_state = 66}, - [924] = {.lex_state = 66}, - [925] = {.lex_state = 66}, - [926] = {.lex_state = 66}, - [927] = {.lex_state = 66}, - [928] = {.lex_state = 66}, - [929] = {.lex_state = 66}, - [930] = {.lex_state = 64}, - [931] = {.lex_state = 64}, - [932] = {.lex_state = 66}, - [933] = {.lex_state = 66}, - [934] = {.lex_state = 64}, - [935] = {.lex_state = 64}, - [936] = {.lex_state = 64}, - [937] = {.lex_state = 66}, - [938] = {.lex_state = 66}, - [939] = {.lex_state = 64}, - [940] = {.lex_state = 66}, - [941] = {.lex_state = 66}, - [942] = {.lex_state = 64}, - [943] = {.lex_state = 66}, - [944] = {.lex_state = 66}, - [945] = {.lex_state = 66}, - [946] = {.lex_state = 66}, - [947] = {.lex_state = 66}, - [948] = {.lex_state = 66}, - [949] = {.lex_state = 66}, - [950] = {.lex_state = 64}, - [951] = {.lex_state = 66}, - [952] = {.lex_state = 66}, - [953] = {.lex_state = 66}, - [954] = {.lex_state = 66}, - [955] = {.lex_state = 64}, - [956] = {.lex_state = 66}, - [957] = {.lex_state = 66}, - [958] = {.lex_state = 64}, - [959] = {.lex_state = 64}, - [960] = {.lex_state = 64}, - [961] = {.lex_state = 66}, - [962] = {.lex_state = 64}, - [963] = {.lex_state = 66}, - [964] = {.lex_state = 66}, - [965] = {.lex_state = 66}, - [966] = {.lex_state = 64}, - [967] = {.lex_state = 64}, - [968] = {.lex_state = 64}, - [969] = {.lex_state = 64}, - [970] = {.lex_state = 64}, - [971] = {.lex_state = 64}, - [972] = {.lex_state = 60}, - [973] = {.lex_state = 60}, - [974] = {.lex_state = 65}, - [975] = {.lex_state = 64}, - [976] = {.lex_state = 64}, - [977] = {.lex_state = 65}, - [978] = {.lex_state = 65}, - [979] = {.lex_state = 65}, - [980] = {.lex_state = 65}, - [981] = {.lex_state = 65}, - [982] = {.lex_state = 65}, - [983] = {.lex_state = 60}, - [984] = {.lex_state = 65}, - [985] = {.lex_state = 60}, - [986] = {.lex_state = 64}, - [987] = {.lex_state = 60}, - [988] = {.lex_state = 64}, - [989] = {.lex_state = 60}, - [990] = {.lex_state = 60}, - [991] = {.lex_state = 60}, - [992] = {.lex_state = 60}, - [993] = {.lex_state = 60}, - [994] = {.lex_state = 60}, - [995] = {.lex_state = 60}, - [996] = {.lex_state = 64}, - [997] = {.lex_state = 60}, - [998] = {.lex_state = 65}, - [999] = {.lex_state = 60}, - [1000] = {.lex_state = 60}, - [1001] = {.lex_state = 60}, - [1002] = {.lex_state = 60}, - [1003] = {.lex_state = 65}, - [1004] = {.lex_state = 65}, - [1005] = {.lex_state = 60}, - [1006] = {.lex_state = 65}, - [1007] = {.lex_state = 64}, - [1008] = {.lex_state = 64}, - [1009] = {.lex_state = 65}, - [1010] = {.lex_state = 65}, - [1011] = {.lex_state = 65}, - [1012] = {.lex_state = 64}, - [1013] = {.lex_state = 65}, - [1014] = {.lex_state = 64}, - [1015] = {.lex_state = 65}, - [1016] = {.lex_state = 65}, - [1017] = {.lex_state = 64}, - [1018] = {.lex_state = 64}, - [1019] = {.lex_state = 64}, - [1020] = {.lex_state = 60}, - [1021] = {.lex_state = 64}, - [1022] = {.lex_state = 64}, - [1023] = {.lex_state = 71}, - [1024] = {.lex_state = 60}, - [1025] = {.lex_state = 70}, - [1026] = {.lex_state = 64}, - [1027] = {.lex_state = 70}, - [1028] = {.lex_state = 70}, - [1029] = {.lex_state = 71}, - [1030] = {.lex_state = 71}, - [1031] = {.lex_state = 71}, - [1032] = {.lex_state = 71}, - [1033] = {.lex_state = 71}, - [1034] = {.lex_state = 71}, - [1035] = {.lex_state = 70}, - [1036] = {.lex_state = 70}, - [1037] = {.lex_state = 64}, - [1038] = {.lex_state = 71}, - [1039] = {.lex_state = 64}, - [1040] = {.lex_state = 71}, - [1041] = {.lex_state = 71}, - [1042] = {.lex_state = 71}, - [1043] = {.lex_state = 71}, - [1044] = {.lex_state = 71}, - [1045] = {.lex_state = 71}, - [1046] = {.lex_state = 60}, - [1047] = {.lex_state = 71}, - [1048] = {.lex_state = 71}, - [1049] = {.lex_state = 71}, - [1050] = {.lex_state = 70}, - [1051] = {.lex_state = 71}, - [1052] = {.lex_state = 70}, - [1053] = {.lex_state = 70}, - [1054] = {.lex_state = 64}, - [1055] = {.lex_state = 70}, - [1056] = {.lex_state = 64}, - [1057] = {.lex_state = 64}, - [1058] = {.lex_state = 70}, - [1059] = {.lex_state = 70}, - [1060] = {.lex_state = 70}, - [1061] = {.lex_state = 70}, - [1062] = {.lex_state = 64}, - [1063] = {.lex_state = 70}, - [1064] = {.lex_state = 64}, - [1065] = {.lex_state = 60}, - [1066] = {.lex_state = 64}, - [1067] = {.lex_state = 70}, - [1068] = {.lex_state = 64}, - [1069] = {.lex_state = 60}, - [1070] = {.lex_state = 64}, - [1071] = {.lex_state = 60}, - [1072] = {.lex_state = 70}, - [1073] = {.lex_state = 64}, - [1074] = {.lex_state = 64}, - [1075] = {.lex_state = 70}, - [1076] = {.lex_state = 70}, - [1077] = {.lex_state = 64}, - [1078] = {.lex_state = 64}, - [1079] = {.lex_state = 64}, - [1080] = {.lex_state = 64}, - [1081] = {.lex_state = 64}, - [1082] = {.lex_state = 64}, - [1083] = {.lex_state = 64}, - [1084] = {.lex_state = 64}, - [1085] = {.lex_state = 64}, - [1086] = {.lex_state = 64}, - [1087] = {.lex_state = 64}, - [1088] = {.lex_state = 64}, - [1089] = {.lex_state = 64}, - [1090] = {.lex_state = 64}, - [1091] = {.lex_state = 64}, - [1092] = {.lex_state = 64}, - [1093] = {.lex_state = 64}, - [1094] = {.lex_state = 64}, - [1095] = {.lex_state = 64}, - [1096] = {.lex_state = 64}, - [1097] = {.lex_state = 64}, - [1098] = {.lex_state = 64}, - [1099] = {.lex_state = 64}, - [1100] = {.lex_state = 64}, - [1101] = {.lex_state = 64}, - [1102] = {.lex_state = 64}, - [1103] = {.lex_state = 64}, - [1104] = {.lex_state = 64}, - [1105] = {.lex_state = 64}, - [1106] = {.lex_state = 64}, - [1107] = {.lex_state = 64}, - [1108] = {.lex_state = 64}, - [1109] = {.lex_state = 64}, - [1110] = {.lex_state = 64}, - [1111] = {.lex_state = 64}, - [1112] = {.lex_state = 64}, - [1113] = {.lex_state = 140}, - [1114] = {.lex_state = 64}, - [1115] = {.lex_state = 64}, - [1116] = {.lex_state = 64}, - [1117] = {.lex_state = 64}, - [1118] = {.lex_state = 64}, - [1119] = {.lex_state = 64}, - [1120] = {.lex_state = 64}, - [1121] = {.lex_state = 64}, - [1122] = {.lex_state = 64}, - [1123] = {.lex_state = 64}, - [1124] = {.lex_state = 64}, - [1125] = {.lex_state = 64}, - [1126] = {.lex_state = 64}, - [1127] = {.lex_state = 64}, - [1128] = {.lex_state = 64}, - [1129] = {.lex_state = 64}, - [1130] = {.lex_state = 62}, - [1131] = {.lex_state = 62}, - [1132] = {.lex_state = 62}, - [1133] = {.lex_state = 62}, - [1134] = {.lex_state = 62}, - [1135] = {.lex_state = 62}, - [1136] = {.lex_state = 62}, - [1137] = {.lex_state = 62}, - [1138] = {.lex_state = 62}, - [1139] = {.lex_state = 64}, - [1140] = {.lex_state = 62}, - [1141] = {.lex_state = 62}, - [1142] = {.lex_state = 62}, - [1143] = {.lex_state = 62}, - [1144] = {.lex_state = 64}, - [1145] = {.lex_state = 64}, - [1146] = {.lex_state = 64}, - [1147] = {.lex_state = 64}, - [1148] = {.lex_state = 64}, - [1149] = {.lex_state = 64}, - [1150] = {.lex_state = 64}, - [1151] = {.lex_state = 64}, - [1152] = {.lex_state = 64}, - [1153] = {.lex_state = 64}, - [1154] = {.lex_state = 64}, - [1155] = {.lex_state = 64}, - [1156] = {.lex_state = 64}, - [1157] = {.lex_state = 64}, - [1158] = {.lex_state = 64}, - [1159] = {.lex_state = 64}, - [1160] = {.lex_state = 64}, - [1161] = {.lex_state = 64}, - [1162] = {.lex_state = 64}, - [1163] = {.lex_state = 64}, - [1164] = {.lex_state = 64}, - [1165] = {.lex_state = 64}, - [1166] = {.lex_state = 64}, - [1167] = {.lex_state = 66}, - [1168] = {.lex_state = 66}, - [1169] = {.lex_state = 66}, - [1170] = {.lex_state = 64}, - [1171] = {.lex_state = 66}, - [1172] = {.lex_state = 66}, - [1173] = {.lex_state = 66}, - [1174] = {.lex_state = 64}, - [1175] = {.lex_state = 66}, - [1176] = {.lex_state = 66}, - [1177] = {.lex_state = 66}, - [1178] = {.lex_state = 66}, - [1179] = {.lex_state = 66}, - [1180] = {.lex_state = 64}, - [1181] = {.lex_state = 66}, - [1182] = {.lex_state = 66}, - [1183] = {.lex_state = 64}, - [1184] = {.lex_state = 64}, - [1185] = {.lex_state = 64}, - [1186] = {.lex_state = 64}, - [1187] = {.lex_state = 64}, - [1188] = {.lex_state = 64}, - [1189] = {.lex_state = 64}, - [1190] = {.lex_state = 64}, - [1191] = {.lex_state = 60}, - [1192] = {.lex_state = 60}, - [1193] = {.lex_state = 60}, - [1194] = {.lex_state = 60}, - [1195] = {.lex_state = 60}, - [1196] = {.lex_state = 60}, - [1197] = {.lex_state = 60}, - [1198] = {.lex_state = 60}, - [1199] = {.lex_state = 64}, - [1200] = {.lex_state = 60}, - [1201] = {.lex_state = 60}, - [1202] = {.lex_state = 60}, - [1203] = {.lex_state = 64}, - [1204] = {.lex_state = 64}, - [1205] = {.lex_state = 64}, - [1206] = {.lex_state = 60}, - [1207] = {.lex_state = 60}, - [1208] = {.lex_state = 60}, - [1209] = {.lex_state = 60}, - [1210] = {.lex_state = 60}, - [1211] = {.lex_state = 64}, - [1212] = {.lex_state = 60}, - [1213] = {.lex_state = 64}, - [1214] = {.lex_state = 60}, - [1215] = {.lex_state = 60}, - [1216] = {.lex_state = 64}, - [1217] = {.lex_state = 60}, - [1218] = {.lex_state = 60}, - [1219] = {.lex_state = 60}, - [1220] = {.lex_state = 60}, - [1221] = {.lex_state = 60}, - [1222] = {.lex_state = 60}, - [1223] = {.lex_state = 64}, - [1224] = {.lex_state = 60}, - [1225] = {.lex_state = 60}, - [1226] = {.lex_state = 60}, - [1227] = {.lex_state = 64}, - [1228] = {.lex_state = 60}, - [1229] = {.lex_state = 64}, - [1230] = {.lex_state = 60}, - [1231] = {.lex_state = 64}, - [1232] = {.lex_state = 64}, - [1233] = {.lex_state = 60}, - [1234] = {.lex_state = 64}, - [1235] = {.lex_state = 60}, - [1236] = {.lex_state = 60}, - [1237] = {.lex_state = 64}, - [1238] = {.lex_state = 60}, - [1239] = {.lex_state = 60}, - [1240] = {.lex_state = 60}, - [1241] = {.lex_state = 60}, - [1242] = {.lex_state = 64}, - [1243] = {.lex_state = 60}, - [1244] = {.lex_state = 60}, - [1245] = {.lex_state = 60}, - [1246] = {.lex_state = 60}, - [1247] = {.lex_state = 64}, - [1248] = {.lex_state = 60}, - [1249] = {.lex_state = 60}, - [1250] = {.lex_state = 60}, - [1251] = {.lex_state = 60}, - [1252] = {.lex_state = 64}, - [1253] = {.lex_state = 60}, - [1254] = {.lex_state = 64}, - [1255] = {.lex_state = 60}, - [1256] = {.lex_state = 60}, - [1257] = {.lex_state = 60}, - [1258] = {.lex_state = 60}, - [1259] = {.lex_state = 64}, - [1260] = {.lex_state = 60}, - [1261] = {.lex_state = 60}, - [1262] = {.lex_state = 60}, - [1263] = {.lex_state = 64}, - [1264] = {.lex_state = 60}, - [1265] = {.lex_state = 60}, - [1266] = {.lex_state = 60}, - [1267] = {.lex_state = 60}, - [1268] = {.lex_state = 60}, - [1269] = {.lex_state = 60}, - [1270] = {.lex_state = 60}, - [1271] = {.lex_state = 60}, - [1272] = {.lex_state = 60}, - [1273] = {.lex_state = 60}, - [1274] = {.lex_state = 60}, - [1275] = {.lex_state = 60}, - [1276] = {.lex_state = 64}, - [1277] = {.lex_state = 60}, - [1278] = {.lex_state = 60}, - [1279] = {.lex_state = 60}, - [1280] = {.lex_state = 64}, - [1281] = {.lex_state = 64}, - [1282] = {.lex_state = 60}, - [1283] = {.lex_state = 60}, - [1284] = {.lex_state = 60}, - [1285] = {.lex_state = 60}, - [1286] = {.lex_state = 60}, - [1287] = {.lex_state = 64}, - [1288] = {.lex_state = 60}, - [1289] = {.lex_state = 60}, - [1290] = {.lex_state = 64}, - [1291] = {.lex_state = 60}, - [1292] = {.lex_state = 60}, - [1293] = {.lex_state = 60}, - [1294] = {.lex_state = 60}, - [1295] = {.lex_state = 60}, - [1296] = {.lex_state = 64}, - [1297] = {.lex_state = 60}, - [1298] = {.lex_state = 60}, - [1299] = {.lex_state = 60}, - [1300] = {.lex_state = 60}, - [1301] = {.lex_state = 64}, - [1302] = {.lex_state = 60}, - [1303] = {.lex_state = 64}, - [1304] = {.lex_state = 64}, - [1305] = {.lex_state = 60}, - [1306] = {.lex_state = 64}, - [1307] = {.lex_state = 64}, - [1308] = {.lex_state = 64}, - [1309] = {.lex_state = 64}, - [1310] = {.lex_state = 64}, - [1311] = {.lex_state = 64}, - [1312] = {.lex_state = 64}, - [1313] = {.lex_state = 64}, - [1314] = {.lex_state = 64}, - [1315] = {.lex_state = 64}, - [1316] = {.lex_state = 64}, - [1317] = {.lex_state = 64}, - [1318] = {.lex_state = 64}, - [1319] = {.lex_state = 64}, - [1320] = {.lex_state = 64}, - [1321] = {.lex_state = 64}, - [1322] = {.lex_state = 64}, - [1323] = {.lex_state = 64}, - [1324] = {.lex_state = 65}, - [1325] = {.lex_state = 64}, - [1326] = {.lex_state = 59}, - [1327] = {.lex_state = 65}, - [1328] = {.lex_state = 65}, - [1329] = {.lex_state = 59}, - [1330] = {.lex_state = 65}, - [1331] = {.lex_state = 33}, - [1332] = {.lex_state = 59}, - [1333] = {.lex_state = 59}, - [1334] = {.lex_state = 65}, - [1335] = {.lex_state = 65}, - [1336] = {.lex_state = 59}, - [1337] = {.lex_state = 59}, - [1338] = {.lex_state = 59}, - [1339] = {.lex_state = 59}, - [1340] = {.lex_state = 59}, - [1341] = {.lex_state = 59}, - [1342] = {.lex_state = 59}, - [1343] = {.lex_state = 59}, - [1344] = {.lex_state = 59}, - [1345] = {.lex_state = 65}, - [1346] = {.lex_state = 59}, - [1347] = {.lex_state = 59}, - [1348] = {.lex_state = 59}, - [1349] = {.lex_state = 64}, - [1350] = {.lex_state = 59}, - [1351] = {.lex_state = 59}, - [1352] = {.lex_state = 59}, - [1353] = {.lex_state = 59}, - [1354] = {.lex_state = 65}, - [1355] = {.lex_state = 59}, - [1356] = {.lex_state = 59}, - [1357] = {.lex_state = 59}, - [1358] = {.lex_state = 59}, - [1359] = {.lex_state = 59}, - [1360] = {.lex_state = 59}, - [1361] = {.lex_state = 59}, - [1362] = {.lex_state = 59}, - [1363] = {.lex_state = 59}, - [1364] = {.lex_state = 65}, - [1365] = {.lex_state = 65}, - [1366] = {.lex_state = 59}, - [1367] = {.lex_state = 65}, - [1368] = {.lex_state = 65}, - [1369] = {.lex_state = 65}, - [1370] = {.lex_state = 64}, - [1371] = {.lex_state = 65}, - [1372] = {.lex_state = 65}, - [1373] = {.lex_state = 59}, - [1374] = {.lex_state = 65}, - [1375] = {.lex_state = 65}, - [1376] = {.lex_state = 65}, - [1377] = {.lex_state = 65}, - [1378] = {.lex_state = 65}, - [1379] = {.lex_state = 59}, - [1380] = {.lex_state = 59}, - [1381] = {.lex_state = 59}, - [1382] = {.lex_state = 65}, - [1383] = {.lex_state = 65}, - [1384] = {.lex_state = 59}, - [1385] = {.lex_state = 64}, - [1386] = {.lex_state = 59}, - [1387] = {.lex_state = 64}, - [1388] = {.lex_state = 59}, - [1389] = {.lex_state = 59}, - [1390] = {.lex_state = 59}, - [1391] = {.lex_state = 59}, - [1392] = {.lex_state = 65}, - [1393] = {.lex_state = 59}, - [1394] = {.lex_state = 59}, - [1395] = {.lex_state = 64}, - [1396] = {.lex_state = 65}, - [1397] = {.lex_state = 59}, - [1398] = {.lex_state = 59}, - [1399] = {.lex_state = 33}, - [1400] = {.lex_state = 33}, - [1401] = {.lex_state = 33}, - [1402] = {.lex_state = 64}, - [1403] = {.lex_state = 33}, - [1404] = {.lex_state = 64}, - [1405] = {.lex_state = 33}, - [1406] = {.lex_state = 33}, - [1407] = {.lex_state = 33}, - [1408] = {.lex_state = 33}, - [1409] = {.lex_state = 33}, - [1410] = {.lex_state = 65}, - [1411] = {.lex_state = 33}, - [1412] = {.lex_state = 33}, - [1413] = {.lex_state = 33}, - [1414] = {.lex_state = 33}, - [1415] = {.lex_state = 33}, - [1416] = {.lex_state = 33}, - [1417] = {.lex_state = 33}, - [1418] = {.lex_state = 33}, - [1419] = {.lex_state = 64}, - [1420] = {.lex_state = 33}, - [1421] = {.lex_state = 33}, - [1422] = {.lex_state = 33}, - [1423] = {.lex_state = 33}, - [1424] = {.lex_state = 33}, - [1425] = {.lex_state = 33}, - [1426] = {.lex_state = 33}, - [1427] = {.lex_state = 33}, - [1428] = {.lex_state = 33}, - [1429] = {.lex_state = 64}, - [1430] = {.lex_state = 33}, - [1431] = {.lex_state = 65}, - [1432] = {.lex_state = 33}, - [1433] = {.lex_state = 64}, - [1434] = {.lex_state = 64}, - [1435] = {.lex_state = 33}, - [1436] = {.lex_state = 33}, - [1437] = {.lex_state = 64}, - [1438] = {.lex_state = 33}, - [1439] = {.lex_state = 33}, - [1440] = {.lex_state = 64}, - [1441] = {.lex_state = 64}, - [1442] = {.lex_state = 64}, - [1443] = {.lex_state = 33}, - [1444] = {.lex_state = 33}, - [1445] = {.lex_state = 33}, - [1446] = {.lex_state = 64}, - [1447] = {.lex_state = 64}, - [1448] = {.lex_state = 64}, - [1449] = {.lex_state = 64}, - [1450] = {.lex_state = 64}, - [1451] = {.lex_state = 64}, - [1452] = {.lex_state = 64}, - [1453] = {.lex_state = 64}, - [1454] = {.lex_state = 64}, - [1455] = {.lex_state = 64}, - [1456] = {.lex_state = 64}, - [1457] = {.lex_state = 64}, - [1458] = {.lex_state = 64}, - [1459] = {.lex_state = 64}, - [1460] = {.lex_state = 64}, - [1461] = {.lex_state = 64}, - [1462] = {.lex_state = 64}, - [1463] = {.lex_state = 64}, - [1464] = {.lex_state = 64}, - [1465] = {.lex_state = 64}, - [1466] = {.lex_state = 64}, - [1467] = {.lex_state = 64}, - [1468] = {.lex_state = 64}, - [1469] = {.lex_state = 64}, - [1470] = {.lex_state = 64}, - [1471] = {.lex_state = 64}, - [1472] = {.lex_state = 64}, - [1473] = {.lex_state = 62}, - [1474] = {.lex_state = 64}, - [1475] = {.lex_state = 64}, - [1476] = {.lex_state = 64}, - [1477] = {.lex_state = 64}, - [1478] = {.lex_state = 64}, - [1479] = {.lex_state = 64}, - [1480] = {.lex_state = 64}, - [1481] = {.lex_state = 64}, - [1482] = {.lex_state = 64}, - [1483] = {.lex_state = 64}, - [1484] = {.lex_state = 64}, - [1485] = {.lex_state = 64}, - [1486] = {.lex_state = 64}, - [1487] = {.lex_state = 64}, - [1488] = {.lex_state = 64}, - [1489] = {.lex_state = 64}, - [1490] = {.lex_state = 64}, - [1491] = {.lex_state = 64}, - [1492] = {.lex_state = 64}, - [1493] = {.lex_state = 64}, - [1494] = {.lex_state = 64}, - [1495] = {.lex_state = 69}, - [1496] = {.lex_state = 64}, - [1497] = {.lex_state = 64}, - [1498] = {.lex_state = 64}, - [1499] = {.lex_state = 64}, - [1500] = {.lex_state = 69}, - [1501] = {.lex_state = 64}, - [1502] = {.lex_state = 64}, - [1503] = {.lex_state = 64}, - [1504] = {.lex_state = 64}, - [1505] = {.lex_state = 64}, - [1506] = {.lex_state = 64}, - [1507] = {.lex_state = 64}, - [1508] = {.lex_state = 64}, - [1509] = {.lex_state = 64}, - [1510] = {.lex_state = 64}, - [1511] = {.lex_state = 64}, - [1512] = {.lex_state = 64}, - [1513] = {.lex_state = 64}, - [1514] = {.lex_state = 64}, - [1515] = {.lex_state = 64}, - [1516] = {.lex_state = 62}, - [1517] = {.lex_state = 64}, - [1518] = {.lex_state = 66}, - [1519] = {.lex_state = 64}, - [1520] = {.lex_state = 66}, - [1521] = {.lex_state = 64}, - [1522] = {.lex_state = 64}, - [1523] = {.lex_state = 64}, - [1524] = {.lex_state = 64}, - [1525] = {.lex_state = 66}, - [1526] = {.lex_state = 64}, - [1527] = {.lex_state = 64}, - [1528] = {.lex_state = 62}, - [1529] = {.lex_state = 64}, - [1530] = {.lex_state = 64}, - [1531] = {.lex_state = 64}, - [1532] = {.lex_state = 64}, - [1533] = {.lex_state = 64}, - [1534] = {.lex_state = 62}, - [1535] = {.lex_state = 69}, + [1] = {.lex_state = 119}, + [2] = {.lex_state = 45}, + [3] = {.lex_state = 45}, + [4] = {.lex_state = 45}, + [5] = {.lex_state = 45}, + [6] = {.lex_state = 45}, + [7] = {.lex_state = 45}, + [8] = {.lex_state = 45}, + [9] = {.lex_state = 45}, + [10] = {.lex_state = 45}, + [11] = {.lex_state = 45}, + [12] = {.lex_state = 45}, + [13] = {.lex_state = 45}, + [14] = {.lex_state = 45}, + [15] = {.lex_state = 45}, + [16] = {.lex_state = 45}, + [17] = {.lex_state = 45}, + [18] = {.lex_state = 45}, + [19] = {.lex_state = 45}, + [20] = {.lex_state = 45}, + [21] = {.lex_state = 45}, + [22] = {.lex_state = 45}, + [23] = {.lex_state = 119}, + [24] = {.lex_state = 119}, + [25] = {.lex_state = 119}, + [26] = {.lex_state = 47}, + [27] = {.lex_state = 119}, + [28] = {.lex_state = 119}, + [29] = {.lex_state = 119}, + [30] = {.lex_state = 119}, + [31] = {.lex_state = 47}, + [32] = {.lex_state = 119}, + [33] = {.lex_state = 119}, + [34] = {.lex_state = 119}, + [35] = {.lex_state = 119}, + [36] = {.lex_state = 47}, + [37] = {.lex_state = 119}, + [38] = {.lex_state = 119}, + [39] = {.lex_state = 119}, + [40] = {.lex_state = 119}, + [41] = {.lex_state = 119}, + [42] = {.lex_state = 119}, + [43] = {.lex_state = 119}, + [44] = {.lex_state = 119}, + [45] = {.lex_state = 45}, + [46] = {.lex_state = 45}, + [47] = {.lex_state = 45}, + [48] = {.lex_state = 45}, + [49] = {.lex_state = 45}, + [50] = {.lex_state = 47}, + [51] = {.lex_state = 47}, + [52] = {.lex_state = 119}, + [53] = {.lex_state = 47}, + [54] = {.lex_state = 119}, + [55] = {.lex_state = 47}, + [56] = {.lex_state = 119}, + [57] = {.lex_state = 119}, + [58] = {.lex_state = 47}, + [59] = {.lex_state = 119}, + [60] = {.lex_state = 119}, + [61] = {.lex_state = 119}, + [62] = {.lex_state = 119}, + [63] = {.lex_state = 119}, + [64] = {.lex_state = 119}, + [65] = {.lex_state = 119}, + [66] = {.lex_state = 119}, + [67] = {.lex_state = 119}, + [68] = {.lex_state = 119}, + [69] = {.lex_state = 119}, + [70] = {.lex_state = 119}, + [71] = {.lex_state = 119}, + [72] = {.lex_state = 119}, + [73] = {.lex_state = 119}, + [74] = {.lex_state = 119}, + [75] = {.lex_state = 45}, + [76] = {.lex_state = 45}, + [77] = {.lex_state = 119}, + [78] = {.lex_state = 45}, + [79] = {.lex_state = 45}, + [80] = {.lex_state = 45}, + [81] = {.lex_state = 45}, + [82] = {.lex_state = 45}, + [83] = {.lex_state = 45}, + [84] = {.lex_state = 45}, + [85] = {.lex_state = 45}, + [86] = {.lex_state = 45}, + [87] = {.lex_state = 45}, + [88] = {.lex_state = 45}, + [89] = {.lex_state = 45}, + [90] = {.lex_state = 45}, + [91] = {.lex_state = 45}, + [92] = {.lex_state = 45}, + [93] = {.lex_state = 45}, + [94] = {.lex_state = 45}, + [95] = {.lex_state = 45}, + [96] = {.lex_state = 45}, + [97] = {.lex_state = 45}, + [98] = {.lex_state = 45}, + [99] = {.lex_state = 45}, + [100] = {.lex_state = 45}, + [101] = {.lex_state = 45}, + [102] = {.lex_state = 45}, + [103] = {.lex_state = 45}, + [104] = {.lex_state = 119}, + [105] = {.lex_state = 45}, + [106] = {.lex_state = 45}, + [107] = {.lex_state = 45}, + [108] = {.lex_state = 45}, + [109] = {.lex_state = 45}, + [110] = {.lex_state = 45}, + [111] = {.lex_state = 45}, + [112] = {.lex_state = 45}, + [113] = {.lex_state = 45}, + [114] = {.lex_state = 45}, + [115] = {.lex_state = 45}, + [116] = {.lex_state = 45}, + [117] = {.lex_state = 45}, + [118] = {.lex_state = 45}, + [119] = {.lex_state = 45}, + [120] = {.lex_state = 45}, + [121] = {.lex_state = 45}, + [122] = {.lex_state = 45}, + [123] = {.lex_state = 45}, + [124] = {.lex_state = 45}, + [125] = {.lex_state = 45}, + [126] = {.lex_state = 45}, + [127] = {.lex_state = 45}, + [128] = {.lex_state = 45}, + [129] = {.lex_state = 45}, + [130] = {.lex_state = 45}, + [131] = {.lex_state = 45}, + [132] = {.lex_state = 45}, + [133] = {.lex_state = 45}, + [134] = {.lex_state = 45}, + [135] = {.lex_state = 45}, + [136] = {.lex_state = 45}, + [137] = {.lex_state = 45}, + [138] = {.lex_state = 45}, + [139] = {.lex_state = 45}, + [140] = {.lex_state = 45}, + [141] = {.lex_state = 45}, + [142] = {.lex_state = 45}, + [143] = {.lex_state = 47}, + [144] = {.lex_state = 119}, + [145] = {.lex_state = 119}, + [146] = {.lex_state = 119}, + [147] = {.lex_state = 47}, + [148] = {.lex_state = 119}, + [149] = {.lex_state = 119}, + [150] = {.lex_state = 119}, + [151] = {.lex_state = 119}, + [152] = {.lex_state = 119}, + [153] = {.lex_state = 119}, + [154] = {.lex_state = 119}, + [155] = {.lex_state = 119}, + [156] = {.lex_state = 119}, + [157] = {.lex_state = 119}, + [158] = {.lex_state = 119}, + [159] = {.lex_state = 119}, + [160] = {.lex_state = 119}, + [161] = {.lex_state = 119}, + [162] = {.lex_state = 119}, + [163] = {.lex_state = 119}, + [164] = {.lex_state = 119}, + [165] = {.lex_state = 119}, + [166] = {.lex_state = 47}, + [167] = {.lex_state = 47}, + [168] = {.lex_state = 119}, + [169] = {.lex_state = 119}, + [170] = {.lex_state = 47}, + [171] = {.lex_state = 119}, + [172] = {.lex_state = 119}, + [173] = {.lex_state = 47}, + [174] = {.lex_state = 119}, + [175] = {.lex_state = 119}, + [176] = {.lex_state = 119}, + [177] = {.lex_state = 119}, + [178] = {.lex_state = 119}, + [179] = {.lex_state = 119}, + [180] = {.lex_state = 119}, + [181] = {.lex_state = 119}, + [182] = {.lex_state = 119}, + [183] = {.lex_state = 119}, + [184] = {.lex_state = 119}, + [185] = {.lex_state = 119}, + [186] = {.lex_state = 119}, + [187] = {.lex_state = 119}, + [188] = {.lex_state = 119}, + [189] = {.lex_state = 47}, + [190] = {.lex_state = 47}, + [191] = {.lex_state = 47}, + [192] = {.lex_state = 47}, + [193] = {.lex_state = 47}, + [194] = {.lex_state = 119}, + [195] = {.lex_state = 119}, + [196] = {.lex_state = 119}, + [197] = {.lex_state = 119}, + [198] = {.lex_state = 47}, + [199] = {.lex_state = 119}, + [200] = {.lex_state = 119}, + [201] = {.lex_state = 119}, + [202] = {.lex_state = 119}, + [203] = {.lex_state = 119}, + [204] = {.lex_state = 47}, + [205] = {.lex_state = 119}, + [206] = {.lex_state = 119}, + [207] = {.lex_state = 119}, + [208] = {.lex_state = 47}, + [209] = {.lex_state = 47}, + [210] = {.lex_state = 119}, + [211] = {.lex_state = 119}, + [212] = {.lex_state = 119}, + [213] = {.lex_state = 47}, + [214] = {.lex_state = 119}, + [215] = {.lex_state = 119}, + [216] = {.lex_state = 119}, + [217] = {.lex_state = 47}, + [218] = {.lex_state = 119}, + [219] = {.lex_state = 119}, + [220] = {.lex_state = 47}, + [221] = {.lex_state = 119}, + [222] = {.lex_state = 47}, + [223] = {.lex_state = 119}, + [224] = {.lex_state = 47}, + [225] = {.lex_state = 119}, + [226] = {.lex_state = 47}, + [227] = {.lex_state = 47}, + [228] = {.lex_state = 47}, + [229] = {.lex_state = 47}, + [230] = {.lex_state = 47}, + [231] = {.lex_state = 47}, + [232] = {.lex_state = 47}, + [233] = {.lex_state = 47}, + [234] = {.lex_state = 119}, + [235] = {.lex_state = 119}, + [236] = {.lex_state = 47}, + [237] = {.lex_state = 119}, + [238] = {.lex_state = 119}, + [239] = {.lex_state = 119}, + [240] = {.lex_state = 47}, + [241] = {.lex_state = 47}, + [242] = {.lex_state = 47}, + [243] = {.lex_state = 119}, + [244] = {.lex_state = 119}, + [245] = {.lex_state = 47}, + [246] = {.lex_state = 119}, + [247] = {.lex_state = 47}, + [248] = {.lex_state = 47}, + [249] = {.lex_state = 119}, + [250] = {.lex_state = 47}, + [251] = {.lex_state = 47}, + [252] = {.lex_state = 47}, + [253] = {.lex_state = 119}, + [254] = {.lex_state = 119}, + [255] = {.lex_state = 119}, + [256] = {.lex_state = 119}, + [257] = {.lex_state = 119}, + [258] = {.lex_state = 119}, + [259] = {.lex_state = 47}, + [260] = {.lex_state = 47}, + [261] = {.lex_state = 47}, + [262] = {.lex_state = 47}, + [263] = {.lex_state = 119}, + [264] = {.lex_state = 47}, + [265] = {.lex_state = 119}, + [266] = {.lex_state = 47}, + [267] = {.lex_state = 119}, + [268] = {.lex_state = 47}, + [269] = {.lex_state = 47}, + [270] = {.lex_state = 47}, + [271] = {.lex_state = 47}, + [272] = {.lex_state = 47}, + [273] = {.lex_state = 47}, + [274] = {.lex_state = 119}, + [275] = {.lex_state = 119}, + [276] = {.lex_state = 119}, + [277] = {.lex_state = 47}, + [278] = {.lex_state = 47}, + [279] = {.lex_state = 47}, + [280] = {.lex_state = 47}, + [281] = {.lex_state = 47}, + [282] = {.lex_state = 119}, + [283] = {.lex_state = 47}, + [284] = {.lex_state = 47}, + [285] = {.lex_state = 119}, + [286] = {.lex_state = 47}, + [287] = {.lex_state = 119}, + [288] = {.lex_state = 47}, + [289] = {.lex_state = 119}, + [290] = {.lex_state = 119}, + [291] = {.lex_state = 119}, + [292] = {.lex_state = 47}, + [293] = {.lex_state = 119}, + [294] = {.lex_state = 119}, + [295] = {.lex_state = 119}, + [296] = {.lex_state = 119}, + [297] = {.lex_state = 119}, + [298] = {.lex_state = 47}, + [299] = {.lex_state = 47}, + [300] = {.lex_state = 47}, + [301] = {.lex_state = 119}, + [302] = {.lex_state = 119}, + [303] = {.lex_state = 47}, + [304] = {.lex_state = 119}, + [305] = {.lex_state = 47}, + [306] = {.lex_state = 119}, + [307] = {.lex_state = 119}, + [308] = {.lex_state = 47}, + [309] = {.lex_state = 119}, + [310] = {.lex_state = 44}, + [311] = {.lex_state = 119}, + [312] = {.lex_state = 44}, + [313] = {.lex_state = 119}, + [314] = {.lex_state = 119}, + [315] = {.lex_state = 119}, + [316] = {.lex_state = 119}, + [317] = {.lex_state = 119}, + [318] = {.lex_state = 119}, + [319] = {.lex_state = 119}, + [320] = {.lex_state = 119}, + [321] = {.lex_state = 119}, + [322] = {.lex_state = 119}, + [323] = {.lex_state = 119}, + [324] = {.lex_state = 119}, + [325] = {.lex_state = 119}, + [326] = {.lex_state = 119}, + [327] = {.lex_state = 119}, + [328] = {.lex_state = 119}, + [329] = {.lex_state = 119}, + [330] = {.lex_state = 119}, + [331] = {.lex_state = 119}, + [332] = {.lex_state = 119}, + [333] = {.lex_state = 119}, + [334] = {.lex_state = 119}, + [335] = {.lex_state = 119}, + [336] = {.lex_state = 119}, + [337] = {.lex_state = 119}, + [338] = {.lex_state = 119}, + [339] = {.lex_state = 119}, + [340] = {.lex_state = 119}, + [341] = {.lex_state = 119}, + [342] = {.lex_state = 119}, + [343] = {.lex_state = 119}, + [344] = {.lex_state = 119}, + [345] = {.lex_state = 119}, + [346] = {.lex_state = 119}, + [347] = {.lex_state = 119}, + [348] = {.lex_state = 119}, + [349] = {.lex_state = 119}, + [350] = {.lex_state = 119}, + [351] = {.lex_state = 119}, + [352] = {.lex_state = 119}, + [353] = {.lex_state = 119}, + [354] = {.lex_state = 119}, + [355] = {.lex_state = 119}, + [356] = {.lex_state = 119}, + [357] = {.lex_state = 119}, + [358] = {.lex_state = 119}, + [359] = {.lex_state = 119}, + [360] = {.lex_state = 119}, + [361] = {.lex_state = 119}, + [362] = {.lex_state = 119}, + [363] = {.lex_state = 119}, + [364] = {.lex_state = 119}, + [365] = {.lex_state = 119}, + [366] = {.lex_state = 119}, + [367] = {.lex_state = 119}, + [368] = {.lex_state = 119}, + [369] = {.lex_state = 119}, + [370] = {.lex_state = 119}, + [371] = {.lex_state = 119}, + [372] = {.lex_state = 119}, + [373] = {.lex_state = 119}, + [374] = {.lex_state = 119}, + [375] = {.lex_state = 119}, + [376] = {.lex_state = 119}, + [377] = {.lex_state = 119}, + [378] = {.lex_state = 119}, + [379] = {.lex_state = 119}, + [380] = {.lex_state = 119}, + [381] = {.lex_state = 44}, + [382] = {.lex_state = 119}, + [383] = {.lex_state = 119}, + [384] = {.lex_state = 119}, + [385] = {.lex_state = 119}, + [386] = {.lex_state = 119}, + [387] = {.lex_state = 119}, + [388] = {.lex_state = 119}, + [389] = {.lex_state = 119}, + [390] = {.lex_state = 119}, + [391] = {.lex_state = 119}, + [392] = {.lex_state = 119}, + [393] = {.lex_state = 119}, + [394] = {.lex_state = 119}, + [395] = {.lex_state = 119}, + [396] = {.lex_state = 119}, + [397] = {.lex_state = 119}, + [398] = {.lex_state = 44}, + [399] = {.lex_state = 44}, + [400] = {.lex_state = 119}, + [401] = {.lex_state = 49}, + [402] = {.lex_state = 49}, + [403] = {.lex_state = 49}, + [404] = {.lex_state = 49}, + [405] = {.lex_state = 119}, + [406] = {.lex_state = 49}, + [407] = {.lex_state = 49}, + [408] = {.lex_state = 49}, + [409] = {.lex_state = 49}, + [410] = {.lex_state = 49}, + [411] = {.lex_state = 49}, + [412] = {.lex_state = 44}, + [413] = {.lex_state = 53}, + [414] = {.lex_state = 119}, + [415] = {.lex_state = 119}, + [416] = {.lex_state = 119}, + [417] = {.lex_state = 119}, + [418] = {.lex_state = 119}, + [419] = {.lex_state = 119}, + [420] = {.lex_state = 119}, + [421] = {.lex_state = 119}, + [422] = {.lex_state = 119}, + [423] = {.lex_state = 119}, + [424] = {.lex_state = 53}, + [425] = {.lex_state = 53}, + [426] = {.lex_state = 53}, + [427] = {.lex_state = 53}, + [428] = {.lex_state = 53}, + [429] = {.lex_state = 53}, + [430] = {.lex_state = 53}, + [431] = {.lex_state = 53}, + [432] = {.lex_state = 53}, + [433] = {.lex_state = 53}, + [434] = {.lex_state = 53}, + [435] = {.lex_state = 53}, + [436] = {.lex_state = 53}, + [437] = {.lex_state = 53}, + [438] = {.lex_state = 53}, + [439] = {.lex_state = 53}, + [440] = {.lex_state = 119}, + [441] = {.lex_state = 53}, + [442] = {.lex_state = 119}, + [443] = {.lex_state = 119}, + [444] = {.lex_state = 53}, + [445] = {.lex_state = 119}, + [446] = {.lex_state = 52}, + [447] = {.lex_state = 57}, + [448] = {.lex_state = 57}, + [449] = {.lex_state = 57}, + [450] = {.lex_state = 52}, + [451] = {.lex_state = 52}, + [452] = {.lex_state = 119}, + [453] = {.lex_state = 119}, + [454] = {.lex_state = 119}, + [455] = {.lex_state = 119}, + [456] = {.lex_state = 119}, + [457] = {.lex_state = 119}, + [458] = {.lex_state = 119}, + [459] = {.lex_state = 119}, + [460] = {.lex_state = 119}, + [461] = {.lex_state = 119}, + [462] = {.lex_state = 119}, + [463] = {.lex_state = 119}, + [464] = {.lex_state = 53}, + [465] = {.lex_state = 119}, + [466] = {.lex_state = 119}, + [467] = {.lex_state = 119}, + [468] = {.lex_state = 119}, + [469] = {.lex_state = 119}, + [470] = {.lex_state = 53}, + [471] = {.lex_state = 53}, + [472] = {.lex_state = 119}, + [473] = {.lex_state = 119}, + [474] = {.lex_state = 119}, + [475] = {.lex_state = 119}, + [476] = {.lex_state = 119}, + [477] = {.lex_state = 119}, + [478] = {.lex_state = 119}, + [479] = {.lex_state = 119}, + [480] = {.lex_state = 119}, + [481] = {.lex_state = 119}, + [482] = {.lex_state = 119}, + [483] = {.lex_state = 119}, + [484] = {.lex_state = 119}, + [485] = {.lex_state = 49}, + [486] = {.lex_state = 53}, + [487] = {.lex_state = 119}, + [488] = {.lex_state = 119}, + [489] = {.lex_state = 119}, + [490] = {.lex_state = 119}, + [491] = {.lex_state = 119}, + [492] = {.lex_state = 119}, + [493] = {.lex_state = 119}, + [494] = {.lex_state = 119}, + [495] = {.lex_state = 119}, + [496] = {.lex_state = 119}, + [497] = {.lex_state = 119}, + [498] = {.lex_state = 119}, + [499] = {.lex_state = 119}, + [500] = {.lex_state = 119}, + [501] = {.lex_state = 119}, + [502] = {.lex_state = 119}, + [503] = {.lex_state = 119}, + [504] = {.lex_state = 119}, + [505] = {.lex_state = 119}, + [506] = {.lex_state = 119}, + [507] = {.lex_state = 119}, + [508] = {.lex_state = 119}, + [509] = {.lex_state = 119}, + [510] = {.lex_state = 119}, + [511] = {.lex_state = 119}, + [512] = {.lex_state = 119}, + [513] = {.lex_state = 119}, + [514] = {.lex_state = 119}, + [515] = {.lex_state = 119}, + [516] = {.lex_state = 119}, + [517] = {.lex_state = 119}, + [518] = {.lex_state = 119}, + [519] = {.lex_state = 119}, + [520] = {.lex_state = 119}, + [521] = {.lex_state = 119}, + [522] = {.lex_state = 119}, + [523] = {.lex_state = 119}, + [524] = {.lex_state = 119}, + [525] = {.lex_state = 119}, + [526] = {.lex_state = 119}, + [527] = {.lex_state = 119}, + [528] = {.lex_state = 119}, + [529] = {.lex_state = 119}, + [530] = {.lex_state = 119}, + [531] = {.lex_state = 119}, + [532] = {.lex_state = 119}, + [533] = {.lex_state = 119}, + [534] = {.lex_state = 119}, + [535] = {.lex_state = 119}, + [536] = {.lex_state = 119}, + [537] = {.lex_state = 119}, + [538] = {.lex_state = 119}, + [539] = {.lex_state = 119}, + [540] = {.lex_state = 119}, + [541] = {.lex_state = 119}, + [542] = {.lex_state = 119}, + [543] = {.lex_state = 119}, + [544] = {.lex_state = 119}, + [545] = {.lex_state = 119}, + [546] = {.lex_state = 119}, + [547] = {.lex_state = 119}, + [548] = {.lex_state = 119}, + [549] = {.lex_state = 119}, + [550] = {.lex_state = 119}, + [551] = {.lex_state = 119}, + [552] = {.lex_state = 119}, + [553] = {.lex_state = 119}, + [554] = {.lex_state = 119}, + [555] = {.lex_state = 119}, + [556] = {.lex_state = 119}, + [557] = {.lex_state = 119}, + [558] = {.lex_state = 119}, + [559] = {.lex_state = 119}, + [560] = {.lex_state = 119}, + [561] = {.lex_state = 119}, + [562] = {.lex_state = 119}, + [563] = {.lex_state = 119}, + [564] = {.lex_state = 119}, + [565] = {.lex_state = 119}, + [566] = {.lex_state = 119}, + [567] = {.lex_state = 119}, + [568] = {.lex_state = 119}, + [569] = {.lex_state = 119}, + [570] = {.lex_state = 119}, + [571] = {.lex_state = 119}, + [572] = {.lex_state = 119}, + [573] = {.lex_state = 119}, + [574] = {.lex_state = 119}, + [575] = {.lex_state = 119}, + [576] = {.lex_state = 119}, + [577] = {.lex_state = 119}, + [578] = {.lex_state = 119}, + [579] = {.lex_state = 119}, + [580] = {.lex_state = 119}, + [581] = {.lex_state = 119}, + [582] = {.lex_state = 119}, + [583] = {.lex_state = 119}, + [584] = {.lex_state = 119}, + [585] = {.lex_state = 119}, + [586] = {.lex_state = 119}, + [587] = {.lex_state = 119}, + [588] = {.lex_state = 119}, + [589] = {.lex_state = 119}, + [590] = {.lex_state = 119}, + [591] = {.lex_state = 119}, + [592] = {.lex_state = 119}, + [593] = {.lex_state = 119}, + [594] = {.lex_state = 119}, + [595] = {.lex_state = 119}, + [596] = {.lex_state = 119}, + [597] = {.lex_state = 119}, + [598] = {.lex_state = 119}, + [599] = {.lex_state = 119}, + [600] = {.lex_state = 119}, + [601] = {.lex_state = 119}, + [602] = {.lex_state = 119}, + [603] = {.lex_state = 119}, + [604] = {.lex_state = 119}, + [605] = {.lex_state = 119}, + [606] = {.lex_state = 119}, + [607] = {.lex_state = 119}, + [608] = {.lex_state = 119}, + [609] = {.lex_state = 119}, + [610] = {.lex_state = 119}, + [611] = {.lex_state = 119}, + [612] = {.lex_state = 119}, + [613] = {.lex_state = 119}, + [614] = {.lex_state = 119}, + [615] = {.lex_state = 119}, + [616] = {.lex_state = 49}, + [617] = {.lex_state = 49}, + [618] = {.lex_state = 49}, + [619] = {.lex_state = 49}, + [620] = {.lex_state = 49}, + [621] = {.lex_state = 49}, + [622] = {.lex_state = 50}, + [623] = {.lex_state = 50}, + [624] = {.lex_state = 50}, + [625] = {.lex_state = 50}, + [626] = {.lex_state = 53}, + [627] = {.lex_state = 50}, + [628] = {.lex_state = 50}, + [629] = {.lex_state = 50}, + [630] = {.lex_state = 50}, + [631] = {.lex_state = 50}, + [632] = {.lex_state = 50}, + [633] = {.lex_state = 53}, + [634] = {.lex_state = 53}, + [635] = {.lex_state = 53}, + [636] = {.lex_state = 53}, + [637] = {.lex_state = 53}, + [638] = {.lex_state = 53}, + [639] = {.lex_state = 53}, + [640] = {.lex_state = 53}, + [641] = {.lex_state = 53}, + [642] = {.lex_state = 53}, + [643] = {.lex_state = 53}, + [644] = {.lex_state = 53}, + [645] = {.lex_state = 53}, + [646] = {.lex_state = 53}, + [647] = {.lex_state = 53}, + [648] = {.lex_state = 53}, + [649] = {.lex_state = 53}, + [650] = {.lex_state = 53}, + [651] = {.lex_state = 53}, + [652] = {.lex_state = 53}, + [653] = {.lex_state = 53}, + [654] = {.lex_state = 119}, + [655] = {.lex_state = 50}, + [656] = {.lex_state = 119}, + [657] = {.lex_state = 53}, + [658] = {.lex_state = 119}, + [659] = {.lex_state = 49}, + [660] = {.lex_state = 119}, + [661] = {.lex_state = 50}, + [662] = {.lex_state = 50}, + [663] = {.lex_state = 50}, + [664] = {.lex_state = 50}, + [665] = {.lex_state = 50}, + [666] = {.lex_state = 50}, + [667] = {.lex_state = 50}, + [668] = {.lex_state = 50}, + [669] = {.lex_state = 50}, + [670] = {.lex_state = 50}, + [671] = {.lex_state = 50}, + [672] = {.lex_state = 50}, + [673] = {.lex_state = 50}, + [674] = {.lex_state = 50}, + [675] = {.lex_state = 50}, + [676] = {.lex_state = 50}, + [677] = {.lex_state = 50}, + [678] = {.lex_state = 53}, + [679] = {.lex_state = 49}, + [680] = {.lex_state = 50}, + [681] = {.lex_state = 51}, + [682] = {.lex_state = 51}, + [683] = {.lex_state = 49}, + [684] = {.lex_state = 50}, + [685] = {.lex_state = 50}, + [686] = {.lex_state = 50}, + [687] = {.lex_state = 53}, + [688] = {.lex_state = 51}, + [689] = {.lex_state = 50}, + [690] = {.lex_state = 51}, + [691] = {.lex_state = 53}, + [692] = {.lex_state = 53}, + [693] = {.lex_state = 53}, + [694] = {.lex_state = 53}, + [695] = {.lex_state = 50}, + [696] = {.lex_state = 53}, + [697] = {.lex_state = 53}, + [698] = {.lex_state = 53}, + [699] = {.lex_state = 119}, + [700] = {.lex_state = 119}, + [701] = {.lex_state = 49}, + [702] = {.lex_state = 53}, + [703] = {.lex_state = 53}, + [704] = {.lex_state = 53}, + [705] = {.lex_state = 53}, + [706] = {.lex_state = 53}, + [707] = {.lex_state = 53}, + [708] = {.lex_state = 53}, + [709] = {.lex_state = 53}, + [710] = {.lex_state = 53}, + [711] = {.lex_state = 53}, + [712] = {.lex_state = 53}, + [713] = {.lex_state = 53}, + [714] = {.lex_state = 53}, + [715] = {.lex_state = 53}, + [716] = {.lex_state = 53}, + [717] = {.lex_state = 53}, + [718] = {.lex_state = 53}, + [719] = {.lex_state = 53}, + [720] = {.lex_state = 49}, + [721] = {.lex_state = 53}, + [722] = {.lex_state = 53}, + [723] = {.lex_state = 53}, + [724] = {.lex_state = 53}, + [725] = {.lex_state = 49}, + [726] = {.lex_state = 53}, + [727] = {.lex_state = 49}, + [728] = {.lex_state = 53}, + [729] = {.lex_state = 49}, + [730] = {.lex_state = 53}, + [731] = {.lex_state = 49}, + [732] = {.lex_state = 53}, + [733] = {.lex_state = 49}, + [734] = {.lex_state = 53}, + [735] = {.lex_state = 53}, + [736] = {.lex_state = 53}, + [737] = {.lex_state = 53}, + [738] = {.lex_state = 53}, + [739] = {.lex_state = 49}, + [740] = {.lex_state = 53}, + [741] = {.lex_state = 53}, + [742] = {.lex_state = 53}, + [743] = {.lex_state = 53}, + [744] = {.lex_state = 53}, + [745] = {.lex_state = 50}, + [746] = {.lex_state = 53}, + [747] = {.lex_state = 53}, + [748] = {.lex_state = 50}, + [749] = {.lex_state = 53}, + [750] = {.lex_state = 53}, + [751] = {.lex_state = 53}, + [752] = {.lex_state = 53}, + [753] = {.lex_state = 53}, + [754] = {.lex_state = 50}, + [755] = {.lex_state = 53}, + [756] = {.lex_state = 53}, + [757] = {.lex_state = 50}, + [758] = {.lex_state = 50}, + [759] = {.lex_state = 53}, + [760] = {.lex_state = 50}, + [761] = {.lex_state = 53}, + [762] = {.lex_state = 53}, + [763] = {.lex_state = 53}, + [764] = {.lex_state = 53}, + [765] = {.lex_state = 50}, + [766] = {.lex_state = 50}, + [767] = {.lex_state = 53}, + [768] = {.lex_state = 53}, + [769] = {.lex_state = 53}, + [770] = {.lex_state = 50}, + [771] = {.lex_state = 53}, + [772] = {.lex_state = 53}, + [773] = {.lex_state = 53}, + [774] = {.lex_state = 53}, + [775] = {.lex_state = 50}, + [776] = {.lex_state = 50}, + [777] = {.lex_state = 53}, + [778] = {.lex_state = 50}, + [779] = {.lex_state = 53}, + [780] = {.lex_state = 53}, + [781] = {.lex_state = 53}, + [782] = {.lex_state = 53}, + [783] = {.lex_state = 53}, + [784] = {.lex_state = 53}, + [785] = {.lex_state = 53}, + [786] = {.lex_state = 53}, + [787] = {.lex_state = 53}, + [788] = {.lex_state = 53}, + [789] = {.lex_state = 53}, + [790] = {.lex_state = 53}, + [791] = {.lex_state = 53}, + [792] = {.lex_state = 53}, + [793] = {.lex_state = 50}, + [794] = {.lex_state = 53}, + [795] = {.lex_state = 53}, + [796] = {.lex_state = 53}, + [797] = {.lex_state = 53}, + [798] = {.lex_state = 53}, + [799] = {.lex_state = 53}, + [800] = {.lex_state = 53}, + [801] = {.lex_state = 53}, + [802] = {.lex_state = 53}, + [803] = {.lex_state = 53}, + [804] = {.lex_state = 53}, + [805] = {.lex_state = 53}, + [806] = {.lex_state = 53}, + [807] = {.lex_state = 53}, + [808] = {.lex_state = 53}, + [809] = {.lex_state = 53}, + [810] = {.lex_state = 53}, + [811] = {.lex_state = 53}, + [812] = {.lex_state = 53}, + [813] = {.lex_state = 53}, + [814] = {.lex_state = 53}, + [815] = {.lex_state = 53}, + [816] = {.lex_state = 53}, + [817] = {.lex_state = 53}, + [818] = {.lex_state = 53}, + [819] = {.lex_state = 53}, + [820] = {.lex_state = 53}, + [821] = {.lex_state = 53}, + [822] = {.lex_state = 53}, + [823] = {.lex_state = 53}, + [824] = {.lex_state = 53}, + [825] = {.lex_state = 53}, + [826] = {.lex_state = 53}, + [827] = {.lex_state = 53}, + [828] = {.lex_state = 52}, + [829] = {.lex_state = 57}, + [830] = {.lex_state = 49}, + [831] = {.lex_state = 49}, + [832] = {.lex_state = 49}, + [833] = {.lex_state = 57}, + [834] = {.lex_state = 57}, + [835] = {.lex_state = 52}, + [836] = {.lex_state = 52}, + [837] = {.lex_state = 49}, + [838] = {.lex_state = 49}, + [839] = {.lex_state = 49}, + [840] = {.lex_state = 49}, + [841] = {.lex_state = 49}, + [842] = {.lex_state = 49}, + [843] = {.lex_state = 49}, + [844] = {.lex_state = 52}, + [845] = {.lex_state = 49}, + [846] = {.lex_state = 49}, + [847] = {.lex_state = 57}, + [848] = {.lex_state = 49}, + [849] = {.lex_state = 49}, + [850] = {.lex_state = 49}, + [851] = {.lex_state = 57}, + [852] = {.lex_state = 57}, + [853] = {.lex_state = 57}, + [854] = {.lex_state = 52}, + [855] = {.lex_state = 52}, + [856] = {.lex_state = 52}, + [857] = {.lex_state = 57}, + [858] = {.lex_state = 57}, + [859] = {.lex_state = 57}, + [860] = {.lex_state = 53}, + [861] = {.lex_state = 57}, + [862] = {.lex_state = 57}, + [863] = {.lex_state = 57}, + [864] = {.lex_state = 49}, + [865] = {.lex_state = 49}, + [866] = {.lex_state = 49}, + [867] = {.lex_state = 57}, + [868] = {.lex_state = 49}, + [869] = {.lex_state = 57}, + [870] = {.lex_state = 49}, + [871] = {.lex_state = 49}, + [872] = {.lex_state = 52}, + [873] = {.lex_state = 52}, + [874] = {.lex_state = 52}, + [875] = {.lex_state = 57}, + [876] = {.lex_state = 52}, + [877] = {.lex_state = 52}, + [878] = {.lex_state = 53}, + [879] = {.lex_state = 52}, + [880] = {.lex_state = 52}, + [881] = {.lex_state = 52}, + [882] = {.lex_state = 57}, + [883] = {.lex_state = 57}, + [884] = {.lex_state = 53}, + [885] = {.lex_state = 52}, + [886] = {.lex_state = 52}, + [887] = {.lex_state = 52}, + [888] = {.lex_state = 49}, + [889] = {.lex_state = 49}, + [890] = {.lex_state = 49}, + [891] = {.lex_state = 49}, + [892] = {.lex_state = 49}, + [893] = {.lex_state = 49}, + [894] = {.lex_state = 53}, + [895] = {.lex_state = 53}, + [896] = {.lex_state = 53}, + [897] = {.lex_state = 53}, + [898] = {.lex_state = 49}, + [899] = {.lex_state = 53}, + [900] = {.lex_state = 53}, + [901] = {.lex_state = 119}, + [902] = {.lex_state = 119}, + [903] = {.lex_state = 119}, + [904] = {.lex_state = 119}, + [905] = {.lex_state = 119}, + [906] = {.lex_state = 119}, + [907] = {.lex_state = 119}, + [908] = {.lex_state = 119}, + [909] = {.lex_state = 53}, + [910] = {.lex_state = 53}, + [911] = {.lex_state = 119}, + [912] = {.lex_state = 119}, + [913] = {.lex_state = 53}, + [914] = {.lex_state = 53}, + [915] = {.lex_state = 53}, + [916] = {.lex_state = 53}, + [917] = {.lex_state = 53}, + [918] = {.lex_state = 53}, + [919] = {.lex_state = 53}, + [920] = {.lex_state = 53}, + [921] = {.lex_state = 53}, + [922] = {.lex_state = 53}, + [923] = {.lex_state = 53}, + [924] = {.lex_state = 53}, + [925] = {.lex_state = 53}, + [926] = {.lex_state = 53}, + [927] = {.lex_state = 53}, + [928] = {.lex_state = 53}, + [929] = {.lex_state = 53}, + [930] = {.lex_state = 53}, + [931] = {.lex_state = 53}, + [932] = {.lex_state = 53}, + [933] = {.lex_state = 53}, + [934] = {.lex_state = 53}, + [935] = {.lex_state = 53}, + [936] = {.lex_state = 50}, + [937] = {.lex_state = 53}, + [938] = {.lex_state = 53}, + [939] = {.lex_state = 50}, + [940] = {.lex_state = 50}, + [941] = {.lex_state = 50}, + [942] = {.lex_state = 50}, + [943] = {.lex_state = 53}, + [944] = {.lex_state = 50}, + [945] = {.lex_state = 50}, + [946] = {.lex_state = 50}, + [947] = {.lex_state = 50}, + [948] = {.lex_state = 50}, + [949] = {.lex_state = 50}, + [950] = {.lex_state = 50}, + [951] = {.lex_state = 50}, + [952] = {.lex_state = 53}, + [953] = {.lex_state = 53}, + [954] = {.lex_state = 53}, + [955] = {.lex_state = 53}, + [956] = {.lex_state = 53}, + [957] = {.lex_state = 53}, + [958] = {.lex_state = 53}, + [959] = {.lex_state = 53}, + [960] = {.lex_state = 53}, + [961] = {.lex_state = 53}, + [962] = {.lex_state = 53}, + [963] = {.lex_state = 53}, + [964] = {.lex_state = 53}, + [965] = {.lex_state = 53}, + [966] = {.lex_state = 53}, + [967] = {.lex_state = 53}, + [968] = {.lex_state = 53}, + [969] = {.lex_state = 53}, + [970] = {.lex_state = 53}, + [971] = {.lex_state = 53}, + [972] = {.lex_state = 53}, + [973] = {.lex_state = 53}, + [974] = {.lex_state = 53}, + [975] = {.lex_state = 53}, + [976] = {.lex_state = 53}, + [977] = {.lex_state = 53}, + [978] = {.lex_state = 53}, + [979] = {.lex_state = 53}, + [980] = {.lex_state = 53}, + [981] = {.lex_state = 52}, + [982] = {.lex_state = 53}, + [983] = {.lex_state = 53}, + [984] = {.lex_state = 52}, + [985] = {.lex_state = 53}, + [986] = {.lex_state = 52}, + [987] = {.lex_state = 53}, + [988] = {.lex_state = 53}, + [989] = {.lex_state = 53}, + [990] = {.lex_state = 53}, + [991] = {.lex_state = 52}, + [992] = {.lex_state = 49}, + [993] = {.lex_state = 49}, + [994] = {.lex_state = 53}, + [995] = {.lex_state = 49}, + [996] = {.lex_state = 49}, + [997] = {.lex_state = 49}, + [998] = {.lex_state = 49}, + [999] = {.lex_state = 53}, + [1000] = {.lex_state = 53}, + [1001] = {.lex_state = 49}, + [1002] = {.lex_state = 49}, + [1003] = {.lex_state = 53}, + [1004] = {.lex_state = 49}, + [1005] = {.lex_state = 49}, + [1006] = {.lex_state = 49}, + [1007] = {.lex_state = 49}, + [1008] = {.lex_state = 49}, + [1009] = {.lex_state = 53}, + [1010] = {.lex_state = 49}, + [1011] = {.lex_state = 49}, + [1012] = {.lex_state = 49}, + [1013] = {.lex_state = 49}, + [1014] = {.lex_state = 49}, + [1015] = {.lex_state = 49}, + [1016] = {.lex_state = 49}, + [1017] = {.lex_state = 49}, + [1018] = {.lex_state = 49}, + [1019] = {.lex_state = 49}, + [1020] = {.lex_state = 49}, + [1021] = {.lex_state = 49}, + [1022] = {.lex_state = 49}, + [1023] = {.lex_state = 49}, + [1024] = {.lex_state = 49}, + [1025] = {.lex_state = 49}, + [1026] = {.lex_state = 49}, + [1027] = {.lex_state = 49}, + [1028] = {.lex_state = 49}, + [1029] = {.lex_state = 49}, + [1030] = {.lex_state = 49}, + [1031] = {.lex_state = 49}, + [1032] = {.lex_state = 49}, + [1033] = {.lex_state = 49}, + [1034] = {.lex_state = 49}, + [1035] = {.lex_state = 49}, + [1036] = {.lex_state = 49}, + [1037] = {.lex_state = 49}, + [1038] = {.lex_state = 49}, + [1039] = {.lex_state = 49}, + [1040] = {.lex_state = 49}, + [1041] = {.lex_state = 49}, + [1042] = {.lex_state = 49}, + [1043] = {.lex_state = 49}, + [1044] = {.lex_state = 49}, + [1045] = {.lex_state = 49}, + [1046] = {.lex_state = 49}, + [1047] = {.lex_state = 49}, + [1048] = {.lex_state = 49}, + [1049] = {.lex_state = 49}, + [1050] = {.lex_state = 49}, + [1051] = {.lex_state = 49}, + [1052] = {.lex_state = 49}, + [1053] = {.lex_state = 49}, + [1054] = {.lex_state = 49}, + [1055] = {.lex_state = 49}, + [1056] = {.lex_state = 49}, + [1057] = {.lex_state = 49}, + [1058] = {.lex_state = 49}, + [1059] = {.lex_state = 49}, + [1060] = {.lex_state = 49}, + [1061] = {.lex_state = 49}, + [1062] = {.lex_state = 49}, + [1063] = {.lex_state = 49}, + [1064] = {.lex_state = 49}, + [1065] = {.lex_state = 49}, + [1066] = {.lex_state = 49}, + [1067] = {.lex_state = 49}, + [1068] = {.lex_state = 49}, + [1069] = {.lex_state = 49}, + [1070] = {.lex_state = 49}, + [1071] = {.lex_state = 49}, + [1072] = {.lex_state = 49}, + [1073] = {.lex_state = 53}, + [1074] = {.lex_state = 53}, + [1075] = {.lex_state = 53}, + [1076] = {.lex_state = 49}, + [1077] = {.lex_state = 53}, + [1078] = {.lex_state = 49}, + [1079] = {.lex_state = 53}, + [1080] = {.lex_state = 53}, + [1081] = {.lex_state = 53}, + [1082] = {.lex_state = 53}, + [1083] = {.lex_state = 53}, + [1084] = {.lex_state = 53}, + [1085] = {.lex_state = 53}, + [1086] = {.lex_state = 53}, + [1087] = {.lex_state = 53}, + [1088] = {.lex_state = 53}, + [1089] = {.lex_state = 53}, + [1090] = {.lex_state = 53}, + [1091] = {.lex_state = 53}, + [1092] = {.lex_state = 53}, + [1093] = {.lex_state = 53}, + [1094] = {.lex_state = 53}, + [1095] = {.lex_state = 53}, + [1096] = {.lex_state = 53}, + [1097] = {.lex_state = 52}, + [1098] = {.lex_state = 53}, + [1099] = {.lex_state = 53}, + [1100] = {.lex_state = 53}, + [1101] = {.lex_state = 53}, + [1102] = {.lex_state = 52}, + [1103] = {.lex_state = 53}, + [1104] = {.lex_state = 53}, + [1105] = {.lex_state = 53}, + [1106] = {.lex_state = 53}, + [1107] = {.lex_state = 53}, + [1108] = {.lex_state = 48}, + [1109] = {.lex_state = 53}, + [1110] = {.lex_state = 48}, + [1111] = {.lex_state = 53}, + [1112] = {.lex_state = 53}, + [1113] = {.lex_state = 48}, + [1114] = {.lex_state = 53}, + [1115] = {.lex_state = 53}, + [1116] = {.lex_state = 52}, + [1117] = {.lex_state = 25}, + [1118] = {.lex_state = 53}, + [1119] = {.lex_state = 53}, + [1120] = {.lex_state = 53}, + [1121] = {.lex_state = 53}, + [1122] = {.lex_state = 53}, + [1123] = {.lex_state = 53}, + [1124] = {.lex_state = 53}, + [1125] = {.lex_state = 53}, + [1126] = {.lex_state = 53}, + [1127] = {.lex_state = 53}, + [1128] = {.lex_state = 53}, + [1129] = {.lex_state = 52}, + [1130] = {.lex_state = 48}, + [1131] = {.lex_state = 48}, + [1132] = {.lex_state = 52}, + [1133] = {.lex_state = 52}, + [1134] = {.lex_state = 52}, + [1135] = {.lex_state = 52}, + [1136] = {.lex_state = 52}, + [1137] = {.lex_state = 48}, + [1138] = {.lex_state = 52}, + [1139] = {.lex_state = 53}, + [1140] = {.lex_state = 52}, + [1141] = {.lex_state = 52}, + [1142] = {.lex_state = 48}, + [1143] = {.lex_state = 52}, + [1144] = {.lex_state = 52}, + [1145] = {.lex_state = 52}, + [1146] = {.lex_state = 52}, + [1147] = {.lex_state = 48}, + [1148] = {.lex_state = 48}, + [1149] = {.lex_state = 48}, + [1150] = {.lex_state = 52}, + [1151] = {.lex_state = 48}, + [1152] = {.lex_state = 48}, + [1153] = {.lex_state = 48}, + [1154] = {.lex_state = 48}, + [1155] = {.lex_state = 48}, + [1156] = {.lex_state = 48}, + [1157] = {.lex_state = 48}, + [1158] = {.lex_state = 48}, + [1159] = {.lex_state = 48}, + [1160] = {.lex_state = 48}, + [1161] = {.lex_state = 52}, + [1162] = {.lex_state = 48}, + [1163] = {.lex_state = 48}, + [1164] = {.lex_state = 48}, + [1165] = {.lex_state = 48}, + [1166] = {.lex_state = 48}, + [1167] = {.lex_state = 48}, + [1168] = {.lex_state = 48}, + [1169] = {.lex_state = 48}, + [1170] = {.lex_state = 48}, + [1171] = {.lex_state = 48}, + [1172] = {.lex_state = 48}, + [1173] = {.lex_state = 52}, + [1174] = {.lex_state = 48}, + [1175] = {.lex_state = 48}, + [1176] = {.lex_state = 48}, + [1177] = {.lex_state = 48}, + [1178] = {.lex_state = 48}, + [1179] = {.lex_state = 48}, + [1180] = {.lex_state = 48}, + [1181] = {.lex_state = 48}, + [1182] = {.lex_state = 48}, + [1183] = {.lex_state = 52}, + [1184] = {.lex_state = 48}, + [1185] = {.lex_state = 48}, + [1186] = {.lex_state = 25}, + [1187] = {.lex_state = 25}, + [1188] = {.lex_state = 25}, + [1189] = {.lex_state = 25}, + [1190] = {.lex_state = 25}, + [1191] = {.lex_state = 25}, + [1192] = {.lex_state = 25}, + [1193] = {.lex_state = 25}, + [1194] = {.lex_state = 25}, + [1195] = {.lex_state = 25}, + [1196] = {.lex_state = 25}, + [1197] = {.lex_state = 25}, + [1198] = {.lex_state = 25}, + [1199] = {.lex_state = 25}, + [1200] = {.lex_state = 25}, + [1201] = {.lex_state = 25}, + [1202] = {.lex_state = 25}, + [1203] = {.lex_state = 52}, + [1204] = {.lex_state = 25}, + [1205] = {.lex_state = 25}, + [1206] = {.lex_state = 25}, + [1207] = {.lex_state = 25}, + [1208] = {.lex_state = 25}, + [1209] = {.lex_state = 25}, + [1210] = {.lex_state = 25}, + [1211] = {.lex_state = 53}, + [1212] = {.lex_state = 25}, + [1213] = {.lex_state = 25}, + [1214] = {.lex_state = 53}, + [1215] = {.lex_state = 25}, + [1216] = {.lex_state = 25}, + [1217] = {.lex_state = 25}, + [1218] = {.lex_state = 53}, + [1219] = {.lex_state = 53}, + [1220] = {.lex_state = 25}, + [1221] = {.lex_state = 25}, + [1222] = {.lex_state = 25}, + [1223] = {.lex_state = 52}, + [1224] = {.lex_state = 25}, + [1225] = {.lex_state = 53}, + [1226] = {.lex_state = 53}, + [1227] = {.lex_state = 53}, + [1228] = {.lex_state = 53}, + [1229] = {.lex_state = 53}, + [1230] = {.lex_state = 53}, + [1231] = {.lex_state = 53}, + [1232] = {.lex_state = 53}, + [1233] = {.lex_state = 53}, + [1234] = {.lex_state = 53}, + [1235] = {.lex_state = 53}, + [1236] = {.lex_state = 53}, + [1237] = {.lex_state = 53}, + [1238] = {.lex_state = 53}, + [1239] = {.lex_state = 53}, + [1240] = {.lex_state = 53}, + [1241] = {.lex_state = 53}, + [1242] = {.lex_state = 53}, + [1243] = {.lex_state = 53}, + [1244] = {.lex_state = 53}, + [1245] = {.lex_state = 53}, + [1246] = {.lex_state = 53}, + [1247] = {.lex_state = 53}, + [1248] = {.lex_state = 53}, + [1249] = {.lex_state = 53}, + [1250] = {.lex_state = 50}, + [1251] = {.lex_state = 50}, + [1252] = {.lex_state = 50}, + [1253] = {.lex_state = 53}, + [1254] = {.lex_state = 50}, + [1255] = {.lex_state = 53}, + [1256] = {.lex_state = 53}, + [1257] = {.lex_state = 53}, + [1258] = {.lex_state = 53}, + [1259] = {.lex_state = 53}, + [1260] = {.lex_state = 53}, + [1261] = {.lex_state = 53}, + [1262] = {.lex_state = 56}, + [1263] = {.lex_state = 53}, + [1264] = {.lex_state = 53}, + [1265] = {.lex_state = 53}, + [1266] = {.lex_state = 53}, + [1267] = {.lex_state = 53}, + [1268] = {.lex_state = 53}, + [1269] = {.lex_state = 53}, + [1270] = {.lex_state = 53}, + [1271] = {.lex_state = 53}, + [1272] = {.lex_state = 53}, + [1273] = {.lex_state = 53}, + [1274] = {.lex_state = 53}, + [1275] = {.lex_state = 53}, + [1276] = {.lex_state = 56}, + [1277] = {.lex_state = 53}, + [1278] = {.lex_state = 53}, + [1279] = {.lex_state = 53}, + [1280] = {.lex_state = 53}, + [1281] = {.lex_state = 53}, + [1282] = {.lex_state = 50}, + [1283] = {.lex_state = 53}, + [1284] = {.lex_state = 56}, + [1285] = {.lex_state = 53}, + [1286] = {.lex_state = 50}, + [1287] = {.lex_state = 50}, + [1288] = {.lex_state = 53}, + [1289] = {.lex_state = 53}, + [1290] = {.lex_state = 53}, + [1291] = {.lex_state = 53}, + [1292] = {.lex_state = 50}, + [1293] = {.lex_state = 53}, + [1294] = {.lex_state = 50}, + [1295] = {.lex_state = 53}, + [1296] = {.lex_state = 50}, + [1297] = {.lex_state = 53}, + [1298] = {.lex_state = 53}, + [1299] = {.lex_state = 53}, + [1300] = {.lex_state = 50}, + [1301] = {.lex_state = 50}, + [1302] = {.lex_state = 50}, + [1303] = {.lex_state = 53}, + [1304] = {.lex_state = 50}, + [1305] = {.lex_state = 50}, + [1306] = {.lex_state = 50}, + [1307] = {.lex_state = 50}, + [1308] = {.lex_state = 50}, + [1309] = {.lex_state = 49}, + [1310] = {.lex_state = 53}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 53}, + [1313] = {.lex_state = 53}, + [1314] = {.lex_state = 53}, + [1315] = {.lex_state = 53}, + [1316] = {.lex_state = 53}, + [1317] = {.lex_state = 53}, + [1318] = {.lex_state = 119}, + [1319] = {.lex_state = 119}, + [1320] = {.lex_state = 53}, + [1321] = {.lex_state = 53}, + [1322] = {.lex_state = 53}, + [1323] = {.lex_state = 53}, + [1324] = {.lex_state = 119}, + [1325] = {.lex_state = 53}, + [1326] = {.lex_state = 119}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 53}, + [1329] = {.lex_state = 54}, + [1330] = {.lex_state = 119}, + [1331] = {.lex_state = 54}, + [1332] = {.lex_state = 119}, + [1333] = {.lex_state = 54}, + [1334] = {.lex_state = 119}, + [1335] = {.lex_state = 119}, + [1336] = {.lex_state = 54}, + [1337] = {.lex_state = 49}, + [1338] = {.lex_state = 49}, + [1339] = {.lex_state = 119}, + [1340] = {.lex_state = 119}, + [1341] = {.lex_state = 53}, + [1342] = {.lex_state = 49}, + [1343] = {.lex_state = 119}, + [1344] = {.lex_state = 119}, + [1345] = {.lex_state = 53}, + [1346] = {.lex_state = 119}, + [1347] = {.lex_state = 53}, + [1348] = {.lex_state = 119}, + [1349] = {.lex_state = 53}, + [1350] = {.lex_state = 119}, + [1351] = {.lex_state = 119}, + [1352] = {.lex_state = 53}, + [1353] = {.lex_state = 53}, + [1354] = {.lex_state = 50}, + [1355] = {.lex_state = 119}, + [1356] = {.lex_state = 119}, + [1357] = {.lex_state = 53}, + [1358] = {.lex_state = 119}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 50}, + [1361] = {.lex_state = 53}, + [1362] = {.lex_state = 119}, + [1363] = {.lex_state = 119}, + [1364] = {.lex_state = 53}, + [1365] = {.lex_state = 119}, + [1366] = {.lex_state = 119}, + [1367] = {.lex_state = 53}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 53}, + [1370] = {.lex_state = 53}, + [1371] = {.lex_state = 119}, + [1372] = {.lex_state = 50}, + [1373] = {.lex_state = 119}, + [1374] = {.lex_state = 119}, + [1375] = {.lex_state = 53}, + [1376] = {.lex_state = 119}, + [1377] = {.lex_state = 53}, + [1378] = {.lex_state = 53}, + [1379] = {.lex_state = 53}, + [1380] = {.lex_state = 53}, + [1381] = {.lex_state = 119}, + [1382] = {.lex_state = 53}, + [1383] = {.lex_state = 53}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 53}, + [1386] = {.lex_state = 119}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 50}, + [1389] = {.lex_state = 119}, + [1390] = {.lex_state = 53}, + [1391] = {.lex_state = 53}, + [1392] = {.lex_state = 53}, + [1393] = {.lex_state = 119}, + [1394] = {.lex_state = 119}, + [1395] = {.lex_state = 53}, + [1396] = {.lex_state = 53}, + [1397] = {.lex_state = 119}, + [1398] = {.lex_state = 53}, + [1399] = {.lex_state = 56}, + [1400] = {.lex_state = 53}, + [1401] = {.lex_state = 53}, + [1402] = {.lex_state = 119}, + [1403] = {.lex_state = 53}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 56}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 56}, + [1408] = {.lex_state = 53}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 53}, + [1411] = {.lex_state = 56}, + [1412] = {.lex_state = 119}, + [1413] = {.lex_state = 119}, + [1414] = {.lex_state = 119}, + [1415] = {.lex_state = 56}, + [1416] = {.lex_state = 56}, + [1417] = {.lex_state = 53}, + [1418] = {.lex_state = 53}, + [1419] = {.lex_state = 119}, + [1420] = {.lex_state = 56}, + [1421] = {.lex_state = 53}, + [1422] = {.lex_state = 119}, + [1423] = {.lex_state = 53}, + [1424] = {.lex_state = 53}, + [1425] = {.lex_state = 119}, + [1426] = {.lex_state = 56}, + [1427] = {.lex_state = 53}, + [1428] = {.lex_state = 53}, + [1429] = {.lex_state = 53}, + [1430] = {.lex_state = 119}, + [1431] = {.lex_state = 53}, + [1432] = {.lex_state = 56}, + [1433] = {.lex_state = 50}, + [1434] = {.lex_state = 53}, + [1435] = {.lex_state = 56}, + [1436] = {.lex_state = 56}, + [1437] = {.lex_state = 119}, + [1438] = {.lex_state = 119}, + [1439] = {.lex_state = 119}, + [1440] = {.lex_state = 119}, + [1441] = {.lex_state = 53}, + [1442] = {.lex_state = 119}, + [1443] = {.lex_state = 119}, + [1444] = {.lex_state = 53}, + [1445] = {.lex_state = 119}, + [1446] = {.lex_state = 119}, + [1447] = {.lex_state = 119}, + [1448] = {.lex_state = 119}, + [1449] = {.lex_state = 53}, + [1450] = {.lex_state = 50}, + [1451] = {.lex_state = 45}, + [1452] = {.lex_state = 119}, + [1453] = {.lex_state = 53}, + [1454] = {.lex_state = 119}, + [1455] = {.lex_state = 119}, + [1456] = {.lex_state = 119}, + [1457] = {.lex_state = 53}, + [1458] = {.lex_state = 53}, + [1459] = {.lex_state = 53}, + [1460] = {.lex_state = 53}, + [1461] = {.lex_state = 53}, + [1462] = {.lex_state = 53}, + [1463] = {.lex_state = 53}, + [1464] = {.lex_state = 0}, + [1465] = {.lex_state = 53}, + [1466] = {.lex_state = 45}, + [1467] = {.lex_state = 53}, + [1468] = {.lex_state = 53}, + [1469] = {.lex_state = 53}, + [1470] = {.lex_state = 53}, + [1471] = {.lex_state = 30}, + [1472] = {.lex_state = 53}, + [1473] = {.lex_state = 32}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 53}, + [1476] = {.lex_state = 53}, + [1477] = {.lex_state = 119}, + [1478] = {.lex_state = 53}, + [1479] = {.lex_state = 32}, + [1480] = {.lex_state = 53}, + [1481] = {.lex_state = 53}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 53}, + [1484] = {.lex_state = 37}, + [1485] = {.lex_state = 30}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 53}, + [1488] = {.lex_state = 53}, + [1489] = {.lex_state = 30}, + [1490] = {.lex_state = 37}, + [1491] = {.lex_state = 53}, + [1492] = {.lex_state = 50}, + [1493] = {.lex_state = 50}, + [1494] = {.lex_state = 53}, + [1495] = {.lex_state = 50}, + [1496] = {.lex_state = 53}, + [1497] = {.lex_state = 32}, + [1498] = {.lex_state = 53}, + [1499] = {.lex_state = 50}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 32}, + [1502] = {.lex_state = 30}, + [1503] = {.lex_state = 30}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 32}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 37}, + [1509] = {.lex_state = 37}, + [1510] = {.lex_state = 30}, + [1511] = {.lex_state = 53}, + [1512] = {.lex_state = 53}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 32}, + [1515] = {.lex_state = 53}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 119}, + [1518] = {.lex_state = 53}, + [1519] = {.lex_state = 32}, + [1520] = {.lex_state = 30}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 0}, + [1524] = {.lex_state = 53}, + [1525] = {.lex_state = 0}, + [1526] = {.lex_state = 53}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 64}, - [1538] = {.lex_state = 64}, - [1539] = {.lex_state = 64}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 64}, - [1542] = {.lex_state = 64}, - [1543] = {.lex_state = 64}, - [1544] = {.lex_state = 64}, - [1545] = {.lex_state = 64}, - [1546] = {.lex_state = 64}, - [1547] = {.lex_state = 64}, - [1548] = {.lex_state = 64}, - [1549] = {.lex_state = 64}, - [1550] = {.lex_state = 0}, + [1537] = {.lex_state = 45}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 53}, + [1540] = {.lex_state = 37}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 34}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, + [1549] = {.lex_state = 0}, + [1550] = {.lex_state = 34}, [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 140}, - [1553] = {.lex_state = 68}, - [1554] = {.lex_state = 140}, - [1555] = {.lex_state = 140}, - [1556] = {.lex_state = 64}, - [1557] = {.lex_state = 64}, - [1558] = {.lex_state = 140}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 68}, - [1561] = {.lex_state = 140}, - [1562] = {.lex_state = 68}, + [1552] = {.lex_state = 53}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 0}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 53}, + [1557] = {.lex_state = 0}, + [1558] = {.lex_state = 45}, + [1559] = {.lex_state = 53}, + [1560] = {.lex_state = 0}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 0}, [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 68}, - [1565] = {.lex_state = 68}, - [1566] = {.lex_state = 64}, - [1567] = {.lex_state = 66}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 34}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 0}, [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 66}, - [1570] = {.lex_state = 64}, - [1571] = {.lex_state = 140}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 64}, - [1574] = {.lex_state = 66}, - [1575] = {.lex_state = 62}, - [1576] = {.lex_state = 66}, - [1577] = {.lex_state = 64}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 0}, + [1571] = {.lex_state = 45}, + [1572] = {.lex_state = 37}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 53}, + [1576] = {.lex_state = 0}, + [1577] = {.lex_state = 0}, [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 140}, - [1580] = {.lex_state = 66}, - [1581] = {.lex_state = 66}, - [1582] = {.lex_state = 140}, - [1583] = {.lex_state = 66}, - [1584] = {.lex_state = 66}, - [1585] = {.lex_state = 60}, - [1586] = {.lex_state = 60}, - [1587] = {.lex_state = 62}, - [1588] = {.lex_state = 64}, - [1589] = {.lex_state = 66}, - [1590] = {.lex_state = 64}, - [1591] = {.lex_state = 140}, - [1592] = {.lex_state = 140}, - [1593] = {.lex_state = 62}, - [1594] = {.lex_state = 64}, - [1595] = {.lex_state = 66}, - [1596] = {.lex_state = 60}, - [1597] = {.lex_state = 140}, - [1598] = {.lex_state = 66}, - [1599] = {.lex_state = 64}, - [1600] = {.lex_state = 60}, - [1601] = {.lex_state = 64}, - [1602] = {.lex_state = 64}, + [1579] = {.lex_state = 0}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 53}, + [1583] = {.lex_state = 0}, + [1584] = {.lex_state = 0}, + [1585] = {.lex_state = 45}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 0}, + [1592] = {.lex_state = 0}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 0}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 0}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 0}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 0}, + [1601] = {.lex_state = 0}, + [1602] = {.lex_state = 45}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 64}, - [1605] = {.lex_state = 140}, - [1606] = {.lex_state = 64}, - [1607] = {.lex_state = 64}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 0}, + [1606] = {.lex_state = 53}, + [1607] = {.lex_state = 34}, [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 62}, - [1610] = {.lex_state = 64}, - [1611] = {.lex_state = 140}, - [1612] = {.lex_state = 64}, - [1613] = {.lex_state = 64}, - [1614] = {.lex_state = 140}, - [1615] = {.lex_state = 64}, - [1616] = {.lex_state = 64}, - [1617] = {.lex_state = 64}, - [1618] = {.lex_state = 69}, - [1619] = {.lex_state = 140}, - [1620] = {.lex_state = 69}, - [1621] = {.lex_state = 140}, - [1622] = {.lex_state = 62}, - [1623] = {.lex_state = 69}, - [1624] = {.lex_state = 64}, - [1625] = {.lex_state = 69}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 0}, + [1616] = {.lex_state = 0}, + [1617] = {.lex_state = 0}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 0}, + [1622] = {.lex_state = 53}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 37}, [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 140}, - [1628] = {.lex_state = 69}, - [1629] = {.lex_state = 69}, - [1630] = {.lex_state = 69}, - [1631] = {.lex_state = 66}, - [1632] = {.lex_state = 64}, - [1633] = {.lex_state = 140}, - [1634] = {.lex_state = 140}, - [1635] = {.lex_state = 69}, - [1636] = {.lex_state = 64}, - [1637] = {.lex_state = 66}, - [1638] = {.lex_state = 66}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 0}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 0}, + [1635] = {.lex_state = 0}, + [1636] = {.lex_state = 45}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 53}, [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 69}, - [1641] = {.lex_state = 69}, - [1642] = {.lex_state = 0}, + [1640] = {.lex_state = 53}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 45}, [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 64}, - [1645] = {.lex_state = 69}, - [1646] = {.lex_state = 140}, - [1647] = {.lex_state = 140}, - [1648] = {.lex_state = 55}, - [1649] = {.lex_state = 140}, - [1650] = {.lex_state = 140}, - [1651] = {.lex_state = 140}, - [1652] = {.lex_state = 140}, - [1653] = {.lex_state = 140}, - [1654] = {.lex_state = 62}, - [1655] = {.lex_state = 140}, - [1656] = {.lex_state = 64}, - [1657] = {.lex_state = 140}, - [1658] = {.lex_state = 140}, - [1659] = {.lex_state = 140}, - [1660] = {.lex_state = 140}, - [1661] = {.lex_state = 64}, - [1662] = {.lex_state = 140}, - [1663] = {.lex_state = 66}, - [1664] = {.lex_state = 140}, - [1665] = {.lex_state = 64}, - [1666] = {.lex_state = 38}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 64}, - [1669] = {.lex_state = 62}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 64}, - [1672] = {.lex_state = 64}, - [1673] = {.lex_state = 64}, - [1674] = {.lex_state = 55}, - [1675] = {.lex_state = 62}, - [1676] = {.lex_state = 43}, - [1677] = {.lex_state = 64}, - [1678] = {.lex_state = 45}, - [1679] = {.lex_state = 64}, - [1680] = {.lex_state = 64}, - [1681] = {.lex_state = 38}, - [1682] = {.lex_state = 43}, - [1683] = {.lex_state = 43}, - [1684] = {.lex_state = 64}, - [1685] = {.lex_state = 64}, - [1686] = {.lex_state = 45}, - [1687] = {.lex_state = 38}, - [1688] = {.lex_state = 64}, - [1689] = {.lex_state = 64}, + [1644] = {.lex_state = 0}, + [1645] = {.lex_state = 33}, + [1646] = {.lex_state = 53}, + [1647] = {.lex_state = 45}, + [1648] = {.lex_state = 0}, + [1649] = {.lex_state = 119}, + [1650] = {.lex_state = 119}, + [1651] = {.lex_state = 119}, + [1652] = {.lex_state = 45}, + [1653] = {.lex_state = 0}, + [1654] = {.lex_state = 119}, + [1655] = {.lex_state = 0}, + [1656] = {.lex_state = 0}, + [1657] = {.lex_state = 0}, + [1658] = {.lex_state = 0}, + [1659] = {.lex_state = 119}, + [1660] = {.lex_state = 119}, + [1661] = {.lex_state = 119}, + [1662] = {.lex_state = 0}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 0}, + [1665] = {.lex_state = 0}, + [1666] = {.lex_state = 53}, + [1667] = {.lex_state = 119}, + [1668] = {.lex_state = 0}, + [1669] = {.lex_state = 119}, + [1670] = {.lex_state = 119}, + [1671] = {.lex_state = 0}, + [1672] = {.lex_state = 53}, + [1673] = {.lex_state = 0}, + [1674] = {.lex_state = 33}, + [1675] = {.lex_state = 119}, + [1676] = {.lex_state = 119}, + [1677] = {.lex_state = 119}, + [1678] = {.lex_state = 53}, + [1679] = {.lex_state = 119}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 53}, + [1682] = {.lex_state = 45}, + [1683] = {.lex_state = 119}, + [1684] = {.lex_state = 0}, + [1685] = {.lex_state = 119}, + [1686] = {.lex_state = 119}, + [1687] = {.lex_state = 0}, + [1688] = {.lex_state = 0}, + [1689] = {.lex_state = 0}, [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 64}, - [1692] = {.lex_state = 64}, - [1693] = {.lex_state = 64}, - [1694] = {.lex_state = 38}, - [1695] = {.lex_state = 62}, - [1696] = {.lex_state = 43}, - [1697] = {.lex_state = 43}, - [1698] = {.lex_state = 43}, - [1699] = {.lex_state = 45}, - [1700] = {.lex_state = 43}, - [1701] = {.lex_state = 62}, - [1702] = {.lex_state = 64}, - [1703] = {.lex_state = 64}, - [1704] = {.lex_state = 140}, - [1705] = {.lex_state = 64}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 33}, + [1693] = {.lex_state = 33}, + [1694] = {.lex_state = 119}, + [1695] = {.lex_state = 0}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 33}, + [1698] = {.lex_state = 119}, + [1699] = {.lex_state = 33}, + [1700] = {.lex_state = 119}, + [1701] = {.lex_state = 119}, + [1702] = {.lex_state = 53}, + [1703] = {.lex_state = 53}, + [1704] = {.lex_state = 0}, + [1705] = {.lex_state = 33}, [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 45}, - [1708] = {.lex_state = 43}, - [1709] = {.lex_state = 64}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 66}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 64}, - [1714] = {.lex_state = 38}, - [1715] = {.lex_state = 64}, - [1716] = {.lex_state = 64}, - [1717] = {.lex_state = 64}, - [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 64}, - [1720] = {.lex_state = 64}, - [1721] = {.lex_state = 64}, - [1722] = {.lex_state = 64}, - [1723] = {.lex_state = 38}, - [1724] = {.lex_state = 64}, - [1725] = {.lex_state = 38}, - [1726] = {.lex_state = 64}, - [1727] = {.lex_state = 64}, - [1728] = {.lex_state = 38}, - [1729] = {.lex_state = 38}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 64}, + [1707] = {.lex_state = 0}, + [1708] = {.lex_state = 33}, + [1709] = {.lex_state = 33}, + [1710] = {.lex_state = 119}, + [1711] = {.lex_state = 0}, + [1712] = {.lex_state = 33}, + [1713] = {.lex_state = 119}, + [1714] = {.lex_state = 33}, + [1715] = {.lex_state = 53}, + [1716] = {.lex_state = 33}, + [1717] = {.lex_state = 33}, + [1718] = {.lex_state = 33}, + [1719] = {.lex_state = 0}, + [1720] = {.lex_state = 0}, + [1721] = {.lex_state = 33}, + [1722] = {.lex_state = 0}, + [1723] = {.lex_state = 0}, + [1724] = {.lex_state = 0}, + [1725] = {.lex_state = 0}, + [1726] = {.lex_state = 0}, + [1727] = {.lex_state = 33}, + [1728] = {.lex_state = 119}, + [1729] = {.lex_state = 33}, + [1730] = {.lex_state = 119}, + [1731] = {.lex_state = 34}, [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 64}, - [1734] = {.lex_state = 64}, + [1733] = {.lex_state = 44}, + [1734] = {.lex_state = 0}, [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 43}, - [1737] = {.lex_state = 45}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 45}, - [1741] = {.lex_state = 55}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 55}, - [1746] = {.lex_state = 64}, - [1747] = {.lex_state = 0}, + [1736] = {.lex_state = 0}, + [1737] = {.lex_state = 0}, + [1738] = {.lex_state = 44}, + [1739] = {.lex_state = 44}, + [1740] = {.lex_state = 0}, + [1741] = {.lex_state = 44}, + [1742] = {.lex_state = 44}, + [1743] = {.lex_state = 34}, + [1744] = {.lex_state = 44}, + [1745] = {.lex_state = 44}, + [1746] = {.lex_state = 44}, + [1747] = {.lex_state = 34}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 40}, - [1750] = {.lex_state = 0}, + [1749] = {.lex_state = 0}, + [1750] = {.lex_state = 44}, [1751] = {.lex_state = 0}, [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 55}, - [1754] = {.lex_state = 64}, - [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 0}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 53}, + [1755] = {.lex_state = 44}, + [1756] = {.lex_state = 44}, [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 64}, + [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 45}, - [1762] = {.lex_state = 64}, - [1763] = {.lex_state = 0}, + [1760] = {.lex_state = 34}, + [1761] = {.lex_state = 0}, + [1762] = {.lex_state = 0}, + [1763] = {.lex_state = 34}, [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 55}, - [1766] = {.lex_state = 64}, + [1765] = {.lex_state = 53}, + [1766] = {.lex_state = 0}, [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, + [1768] = {.lex_state = 34}, + [1769] = {.lex_state = 34}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 40}, - [1772] = {.lex_state = 64}, + [1771] = {.lex_state = 34}, + [1772] = {.lex_state = 0}, [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 64}, + [1775] = {.lex_state = 34}, + [1776] = {.lex_state = 44}, [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 40}, - [1779] = {.lex_state = 64}, - [1780] = {.lex_state = 0}, + [1778] = {.lex_state = 34}, + [1779] = {.lex_state = 44}, + [1780] = {.lex_state = 44}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 55}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 0}, + [1782] = {.lex_state = 44}, + [1783] = {.lex_state = 0}, + [1784] = {.lex_state = 34}, + [1785] = {.lex_state = 34}, [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 0}, + [1787] = {.lex_state = 34}, [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 40}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 55}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, + [1790] = {.lex_state = 34}, + [1791] = {.lex_state = 34}, + [1792] = {.lex_state = 34}, + [1793] = {.lex_state = 34}, + [1794] = {.lex_state = 34}, + [1795] = {.lex_state = 44}, + [1796] = {.lex_state = 53}, + [1797] = {.lex_state = 53}, + [1798] = {.lex_state = 53}, [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 64}, + [1800] = {.lex_state = 0}, [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 64}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 45}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 40}, - [1809] = {.lex_state = 64}, - [1810] = {.lex_state = 0}, + [1802] = {.lex_state = 34}, + [1803] = {.lex_state = 53}, + [1804] = {.lex_state = 34}, + [1805] = {.lex_state = 53}, + [1806] = {.lex_state = 44}, + [1807] = {.lex_state = 34}, + [1808] = {.lex_state = 0}, + [1809] = {.lex_state = 0}, + [1810] = {.lex_state = 34}, [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, + [1813] = {.lex_state = 34}, [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, + [1815] = {.lex_state = 53}, [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 45}, - [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 0}, + [1819] = {.lex_state = 44}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 53}, + [1822] = {.lex_state = 53}, [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 55}, + [1824] = {.lex_state = 119}, + [1825] = {.lex_state = 0}, [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 64}, - [1829] = {.lex_state = 64}, - [1830] = {.lex_state = 64}, - [1831] = {.lex_state = 55}, + [1828] = {.lex_state = 0}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 119}, + [1831] = {.lex_state = 0}, [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 140}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 64}, + [1833] = {.lex_state = 53}, + [1834] = {.lex_state = 44}, + [1835] = {.lex_state = 0}, [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 140}, - [1840] = {.lex_state = 140}, - [1841] = {.lex_state = 0}, + [1838] = {.lex_state = 53}, + [1839] = {.lex_state = 44}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 53}, [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 140}, - [1845] = {.lex_state = 140}, - [1846] = {.lex_state = 140}, - [1847] = {.lex_state = 140}, - [1848] = {.lex_state = 39}, - [1849] = {.lex_state = 140}, + [1843] = {.lex_state = 53}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 0}, + [1846] = {.lex_state = 0}, + [1847] = {.lex_state = 0}, + [1848] = {.lex_state = 53}, + [1849] = {.lex_state = 0}, [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 140}, - [1852] = {.lex_state = 55}, - [1853] = {.lex_state = 140}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 39}, + [1851] = {.lex_state = 0}, + [1852] = {.lex_state = 0}, + [1853] = {.lex_state = 0}, + [1854] = {.lex_state = 44}, + [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 140}, - [1858] = {.lex_state = 39}, - [1859] = {.lex_state = 140}, - [1860] = {.lex_state = 140}, - [1861] = {.lex_state = 39}, - [1862] = {.lex_state = 140}, - [1863] = {.lex_state = 140}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 64}, + [1857] = {.lex_state = 0}, + [1858] = {.lex_state = 44}, + [1859] = {.lex_state = 44}, + [1860] = {.lex_state = 0}, + [1861] = {.lex_state = 44}, + [1862] = {.lex_state = 0}, + [1863] = {.lex_state = 53}, + [1864] = {.lex_state = 53}, + [1865] = {.lex_state = 44}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 39}, - [1869] = {.lex_state = 64}, - [1870] = {.lex_state = 140}, + [1867] = {.lex_state = 44}, + [1868] = {.lex_state = 44}, + [1869] = {.lex_state = 44}, + [1870] = {.lex_state = 44}, [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 140}, + [1873] = {.lex_state = 0}, [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 0}, + [1875] = {.lex_state = 34}, [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 39}, - [1878] = {.lex_state = 0}, + [1877] = {.lex_state = 53}, + [1878] = {.lex_state = 53}, [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, + [1881] = {.lex_state = 44}, [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 140}, - [1884] = {.lex_state = 0}, + [1883] = {.lex_state = 44}, + [1884] = {.lex_state = 44}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 64}, - [1887] = {.lex_state = 64}, + [1886] = {.lex_state = 53}, + [1887] = {.lex_state = 44}, [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 140}, + [1889] = {.lex_state = 0}, [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 140}, - [1892] = {.lex_state = 39}, - [1893] = {.lex_state = 55}, - [1894] = {.lex_state = 140}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 39}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 39}, - [1900] = {.lex_state = 140}, - [1901] = {.lex_state = 140}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 39}, - [1904] = {.lex_state = 140}, - [1905] = {.lex_state = 140}, + [1891] = {.lex_state = 34}, + [1892] = {.lex_state = 34}, + [1893] = {.lex_state = 44}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 44}, + [1896] = {.lex_state = 44}, + [1897] = {.lex_state = 53}, + [1898] = {.lex_state = 44}, + [1899] = {.lex_state = 0}, + [1900] = {.lex_state = 44}, + [1901] = {.lex_state = 44}, + [1902] = {.lex_state = 53}, + [1903] = {.lex_state = 44}, + [1904] = {.lex_state = 44}, + [1905] = {.lex_state = 44}, [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 64}, - [1908] = {.lex_state = 39}, - [1909] = {.lex_state = 39}, - [1910] = {.lex_state = 140}, - [1911] = {.lex_state = 39}, + [1907] = {.lex_state = 53}, + [1908] = {.lex_state = 53}, + [1909] = {.lex_state = 119}, + [1910] = {.lex_state = 53}, + [1911] = {.lex_state = 0}, [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 39}, - [1917] = {.lex_state = 39}, - [1918] = {.lex_state = 140}, + [1913] = {.lex_state = 53}, + [1914] = {.lex_state = 53}, + [1915] = {.lex_state = 44}, + [1916] = {.lex_state = 0}, + [1917] = {.lex_state = 0}, + [1918] = {.lex_state = 53}, [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 64}, - [1921] = {.lex_state = 39}, - [1922] = {.lex_state = 140}, - [1923] = {.lex_state = 140}, - [1924] = {.lex_state = 39}, - [1925] = {.lex_state = 39}, - [1926] = {.lex_state = 140}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 44}, + [1922] = {.lex_state = 0}, + [1923] = {.lex_state = 34}, + [1924] = {.lex_state = 44}, + [1925] = {.lex_state = 44}, + [1926] = {.lex_state = 44}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 39}, - [1929] = {.lex_state = 39}, - [1930] = {.lex_state = 39}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, + [1928] = {.lex_state = 53}, + [1929] = {.lex_state = 0}, + [1930] = {.lex_state = 0}, + [1931] = {.lex_state = 44}, + [1932] = {.lex_state = 53}, + [1933] = {.lex_state = 53}, [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 40}, - [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 40}, + [1935] = {.lex_state = 34}, + [1936] = {.lex_state = 53}, + [1937] = {.lex_state = 119}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 40}, - [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 40}, - [1942] = {.lex_state = 0}, - [1943] = {.lex_state = 40}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 40}, - [1946] = {.lex_state = 40}, - [1947] = {.lex_state = 40}, - [1948] = {.lex_state = 53}, - [1949] = {.lex_state = 40}, - [1950] = {.lex_state = 40}, - [1951] = {.lex_state = 40}, - [1952] = {.lex_state = 64}, - [1953] = {.lex_state = 64}, - [1954] = {.lex_state = 64}, + [1939] = {.lex_state = 119}, + [1940] = {.lex_state = 119}, + [1941] = {.lex_state = 44}, + [1942] = {.lex_state = 53}, + [1943] = {.lex_state = 44}, + [1944] = {.lex_state = 44}, + [1945] = {.lex_state = 0}, + [1946] = {.lex_state = 119}, + [1947] = {.lex_state = 119}, + [1948] = {.lex_state = 34}, + [1949] = {.lex_state = 53}, + [1950] = {.lex_state = 119}, + [1951] = {.lex_state = 53}, + [1952] = {.lex_state = 0}, + [1953] = {.lex_state = 0}, + [1954] = {.lex_state = 44}, [1955] = {.lex_state = 53}, - [1956] = {.lex_state = 64}, - [1957] = {.lex_state = 40}, - [1958] = {.lex_state = 64}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 0}, + [1956] = {.lex_state = 0}, + [1957] = {.lex_state = 0}, + [1958] = {.lex_state = 119}, + [1959] = {.lex_state = 119}, + [1960] = {.lex_state = 53}, [1961] = {.lex_state = 0}, [1962] = {.lex_state = 53}, [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 0}, + [1964] = {.lex_state = 53}, [1965] = {.lex_state = 0}, [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 40}, - [1968] = {.lex_state = 40}, + [1967] = {.lex_state = 34}, + [1968] = {.lex_state = 0}, [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 0}, - [1972] = {.lex_state = 64}, + [1970] = {.lex_state = 53}, + [1971] = {.lex_state = 119}, + [1972] = {.lex_state = 119}, [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 40}, + [1974] = {.lex_state = 119}, + [1975] = {.lex_state = 119}, [1976] = {.lex_state = 53}, - [1977] = {.lex_state = 64}, - [1978] = {.lex_state = 40}, - [1979] = {.lex_state = 53}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 64}, - [1982] = {.lex_state = 40}, - [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 53}, - [1987] = {.lex_state = 40}, - [1988] = {.lex_state = 53}, - [1989] = {.lex_state = 53}, - [1990] = {.lex_state = 53}, - [1991] = {.lex_state = 64}, - [1992] = {.lex_state = 0}, - [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 64}, - [1996] = {.lex_state = 40}, - [1997] = {.lex_state = 0}, - [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 64}, - [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 40}, - [2008] = {.lex_state = 0}, - [2009] = {.lex_state = 53}, - [2010] = {.lex_state = 40}, - [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 40}, - [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 64}, - [2015] = {.lex_state = 64}, - [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 53}, - [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 0}, - [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 53}, - [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 64}, - [2024] = {.lex_state = 40}, - [2025] = {.lex_state = 53}, - [2026] = {.lex_state = 53}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 64}, - [2031] = {.lex_state = 40}, - [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 64}, - [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0}, - [2037] = {.lex_state = 64}, - [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 53}, - [2040] = {.lex_state = 53}, - [2041] = {.lex_state = 64}, - [2042] = {.lex_state = 64}, - [2043] = {.lex_state = 64}, - [2044] = {.lex_state = 0}, - [2045] = {.lex_state = 64}, - [2046] = {.lex_state = 0}, - [2047] = {.lex_state = 53}, - [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 53}, - [2050] = {.lex_state = 64}, - [2051] = {.lex_state = 64}, - [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 53}, - [2054] = {.lex_state = 53}, - [2055] = {.lex_state = 0}, - [2056] = {.lex_state = 0}, - [2057] = {.lex_state = 0}, - [2058] = {.lex_state = 0}, - [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 64}, - [2061] = {.lex_state = 53}, - [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 53}, - [2065] = {.lex_state = 64}, - [2066] = {.lex_state = 140}, - [2067] = {.lex_state = 53}, - [2068] = {.lex_state = 64}, - [2069] = {.lex_state = 64}, - [2070] = {.lex_state = 64}, - [2071] = {.lex_state = 53}, - [2072] = {.lex_state = 0}, - [2073] = {.lex_state = 64}, - [2074] = {.lex_state = 64}, - [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 53}, - [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 53}, - [2080] = {.lex_state = 40}, - [2081] = {.lex_state = 53}, - [2082] = {.lex_state = 40}, - [2083] = {.lex_state = 40}, - [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 140}, - [2086] = {.lex_state = 64}, - [2087] = {.lex_state = 0}, - [2088] = {.lex_state = 0}, - [2089] = {.lex_state = 64}, - [2090] = {.lex_state = 64}, - [2091] = {.lex_state = 64}, - [2092] = {.lex_state = 64}, - [2093] = {.lex_state = 53}, - [2094] = {.lex_state = 40}, - [2095] = {.lex_state = 53}, - [2096] = {.lex_state = 140}, - [2097] = {.lex_state = 53}, - [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 140}, - [2100] = {.lex_state = 53}, - [2101] = {.lex_state = 0}, - [2102] = {.lex_state = 0}, - [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 0}, - [2105] = {.lex_state = 53}, - [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 64}, - [2108] = {.lex_state = 53}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 64}, - [2111] = {.lex_state = 53}, - [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 0}, - [2114] = {.lex_state = 0}, - [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 64}, - [2118] = {.lex_state = 0}, - [2119] = {.lex_state = 64}, - [2120] = {.lex_state = 40}, - [2121] = {.lex_state = 53}, - [2122] = {.lex_state = 53}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 53}, - [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 0}, - [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 0}, - [2130] = {.lex_state = 64}, - [2131] = {.lex_state = 64}, - [2132] = {.lex_state = 140}, - [2133] = {.lex_state = 64}, - [2134] = {.lex_state = 40}, - [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 0}, - [2138] = {.lex_state = 53}, - [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 0}, - [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 40}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 64}, - [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 140}, - [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 53}, - [2152] = {.lex_state = 64}, - [2153] = {.lex_state = 40}, - [2154] = {.lex_state = 53}, - [2155] = {.lex_state = 53}, - [2156] = {.lex_state = 40}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 53}, - [2159] = {.lex_state = 53}, - [2160] = {.lex_state = 64}, - [2161] = {.lex_state = 40}, - [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0}, - [2164] = {.lex_state = 0}, - [2165] = {.lex_state = 0}, - [2166] = {.lex_state = 0}, - [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 64}, - [2169] = {.lex_state = 0}, - [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 40}, - [2172] = {.lex_state = 0}, - [2173] = {.lex_state = 40}, - [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 140}, - [2176] = {.lex_state = 53}, - [2177] = {.lex_state = 53}, - [2178] = {.lex_state = 0}, - [2179] = {.lex_state = 53}, - [2180] = {.lex_state = 53}, - [2181] = {.lex_state = 53}, - [2182] = {.lex_state = 53}, - [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 53}, - [2186] = {.lex_state = 53}, - [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 0}, - [2189] = {.lex_state = 53}, - [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 140}, - [2192] = {.lex_state = 140}, - [2193] = {.lex_state = 140}, - [2194] = {.lex_state = 64}, - [2195] = {.lex_state = 0}, - [2196] = {.lex_state = 0}, - [2197] = {.lex_state = 140}, - [2198] = {.lex_state = 53}, - [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 53}, - [2202] = {.lex_state = 64}, - [2203] = {.lex_state = 53}, - [2204] = {.lex_state = 40}, - [2205] = {.lex_state = 53}, - [2206] = {.lex_state = 140}, - [2207] = {.lex_state = 64}, - [2208] = {.lex_state = 53}, - [2209] = {.lex_state = 140}, - [2210] = {.lex_state = 40}, - [2211] = {.lex_state = 140}, - [2212] = {.lex_state = 0}, - [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 53}, - [2216] = {.lex_state = 53}, - [2217] = {.lex_state = 53}, - [2218] = {.lex_state = 140}, - [2219] = {.lex_state = 0}, - [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 140}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 64}, - [2224] = {.lex_state = 0}, - [2225] = {.lex_state = 140}, - [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 64}, - [2228] = {.lex_state = 140}, + [1977] = {.lex_state = 53}, + [1978] = {.lex_state = 119}, + [1979] = {.lex_state = 34}, + [1980] = {.lex_state = 53}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -15489,9 +11449,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1), [anon_sym_short] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), [anon_sym_auto] = ACTIONS(1), [anon_sym_register] = ACTIONS(1), [anon_sym_inline] = ACTIONS(1), @@ -15508,6 +11468,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1), [anon_sym__Noreturn] = ACTIONS(1), [anon_sym_noreturn] = ACTIONS(1), + [anon_sym_alignas] = ACTIONS(1), + [anon_sym__Alignas] = ACTIONS(1), [sym_primitive_type] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), @@ -15572,74 +11534,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(2187), - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym__old_style_function_definition] = STATE(462), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1477), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(856), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1128), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym__top_level_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(1302), - [sym__expression_not_binary] = STATE(1305), - [sym_conditional_expression] = STATE(1305), - [sym_assignment_expression] = STATE(1305), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(1305), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(1305), - [sym_cast_expression] = STATE(1305), - [sym_sizeof_expression] = STATE(1305), - [sym_alignof_expression] = STATE(1305), - [sym_offsetof_expression] = STATE(1305), - [sym_generic_expression] = STATE(1305), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(1305), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(1305), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(1305), - [sym_concatenated_string] = STATE(1305), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(1305), - [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_translation_unit] = STATE(1938), + [sym__top_level_item] = STATE(43), + [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__old_style_function_definition] = STATE(359), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1101), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(697), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(785), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(380), + [sym__top_level_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym__top_level_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(1078), + [sym__string] = STATE(1076), + [sym_conditional_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(1076), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(1076), + [sym_cast_expression] = STATE(1076), + [sym_sizeof_expression] = STATE(1076), + [sym_alignof_expression] = STATE(1076), + [sym_offsetof_expression] = STATE(1076), + [sym_generic_expression] = STATE(1076), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(1076), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(898), + [sym_char_literal] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(1076), + [sym__empty_declaration] = STATE(43), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -15689,136 +11654,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(97), - [sym_false] = ACTIONS(97), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(93), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(99), + [sym_false] = ACTIONS(99), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [2] = { - [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(1988), - [sym_preproc_elif] = STATE(1988), - [sym_preproc_elifdef] = STATE(1988), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1834), + [sym_preproc_elif] = STATE(1834), + [sym_preproc_elifdef] = STATE(1834), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15826,10 +11796,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -15839,7 +11809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -15861,312 +11831,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [3] = { - [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(1955), - [sym_preproc_elif] = STATE(1955), - [sym_preproc_elifdef] = STATE(1955), - [sym_function_definition] = STATE(10), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(10), - [sym_seh_leave_statement] = STATE(10), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [4] = { - [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(2185), - [sym_preproc_elif] = STATE(2185), - [sym_preproc_elifdef] = STATE(2185), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), + [sym__block_item] = STATE(21), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(1738), + [sym_preproc_elif] = STATE(1738), + [sym_preproc_elifdef] = STATE(1738), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(21), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), [aux_sym_preproc_if_token2] = ACTIONS(163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16174,10 +11975,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16187,7 +11988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16209,138 +12010,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [5] = { - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_call] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(2205), - [sym_preproc_elif] = STATE(2205), - [sym_preproc_elifdef] = STATE(2205), - [sym_function_definition] = STATE(4), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(4), - [sym_labeled_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_switch_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_while_statement] = STATE(4), - [sym_do_statement] = STATE(4), - [sym_for_statement] = STATE(4), - [sym_return_statement] = STATE(4), - [sym_break_statement] = STATE(4), - [sym_continue_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym_seh_try_statement] = STATE(4), - [sym_seh_leave_statement] = STATE(4), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), + [4] = { + [sym__block_item] = STATE(15), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(1744), + [sym_preproc_elif] = STATE(1744), + [sym_preproc_elifdef] = STATE(1744), + [sym_function_definition] = STATE(15), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(15), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), [aux_sym_preproc_if_token2] = ACTIONS(165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16348,10 +12154,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16361,7 +12167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16383,138 +12189,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [6] = { - [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(1962), - [sym_preproc_elif] = STATE(1962), - [sym_preproc_elifdef] = STATE(1962), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), + [5] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1839), + [sym_preproc_elif] = STATE(1839), + [sym_preproc_elifdef] = STATE(1839), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), [aux_sym_preproc_if_token2] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16522,10 +12333,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16535,7 +12346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16557,138 +12368,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [7] = { - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(2009), - [sym_preproc_elif] = STATE(2009), - [sym_preproc_elifdef] = STATE(2009), - [sym_function_definition] = STATE(2), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym_seh_try_statement] = STATE(2), - [sym_seh_leave_statement] = STATE(2), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), + [6] = { + [sym__block_item] = STATE(9), + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), + [sym_preproc_else] = STATE(1819), + [sym_preproc_elif] = STATE(1819), + [sym_preproc_elifdef] = STATE(1819), + [sym_function_definition] = STATE(9), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(9), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), [aux_sym_preproc_if_token2] = ACTIONS(169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16696,10 +12512,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16709,7 +12525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16731,138 +12547,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [8] = { - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(1979), - [sym_preproc_elif] = STATE(1979), - [sym_preproc_elifdef] = STATE(1979), - [sym_function_definition] = STATE(6), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_case_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_goto_statement] = STATE(6), - [sym_seh_try_statement] = STATE(6), - [sym_seh_leave_statement] = STATE(6), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), + [7] = { + [sym__block_item] = STATE(17), + [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(1782), + [sym_preproc_elif] = STATE(1782), + [sym_preproc_elifdef] = STATE(1782), + [sym_function_definition] = STATE(17), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(17), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), [aux_sym_preproc_if_token2] = ACTIONS(171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16870,10 +12691,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16883,7 +12704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16905,138 +12726,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [9] = { - [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(2079), - [sym_preproc_elif] = STATE(2079), - [sym_preproc_elifdef] = STATE(2079), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), + [8] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1915), + [sym_preproc_elif] = STATE(1915), + [sym_preproc_elifdef] = STATE(1915), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), [aux_sym_preproc_if_token2] = ACTIONS(173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17044,10 +12870,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17057,7 +12883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17079,138 +12905,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [10] = { - [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(1989), - [sym_preproc_elif] = STATE(1989), - [sym_preproc_elifdef] = STATE(1989), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), + [9] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1739), + [sym_preproc_elif] = STATE(1739), + [sym_preproc_elifdef] = STATE(1739), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), [aux_sym_preproc_if_token2] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17218,10 +13049,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17231,7 +13062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17253,138 +13084,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [11] = { - [sym_preproc_include] = STATE(9), - [sym_preproc_def] = STATE(9), - [sym_preproc_function_def] = STATE(9), - [sym_preproc_call] = STATE(9), - [sym_preproc_if] = STATE(9), - [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(2093), - [sym_preproc_elif] = STATE(2093), - [sym_preproc_elifdef] = STATE(2093), - [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_case_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_goto_statement] = STATE(9), - [sym_seh_try_statement] = STATE(9), - [sym_seh_leave_statement] = STATE(9), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), + [10] = { + [sym__block_item] = STATE(11), + [sym_preproc_include] = STATE(11), + [sym_preproc_def] = STATE(11), + [sym_preproc_function_def] = STATE(11), + [sym_preproc_call] = STATE(11), + [sym_preproc_if] = STATE(11), + [sym_preproc_ifdef] = STATE(11), + [sym_preproc_else] = STATE(1893), + [sym_preproc_elif] = STATE(1893), + [sym_preproc_elifdef] = STATE(1893), + [sym_function_definition] = STATE(11), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(11), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(11), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), [aux_sym_preproc_if_token2] = ACTIONS(177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17392,10 +13228,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17405,7 +13241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17427,135 +13263,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [12] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2208), - [sym_preproc_elif] = STATE(2208), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [11] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1944), + [sym_preproc_elif] = STATE(1944), + [sym_preproc_elifdef] = STATE(1944), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17563,10 +13407,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17576,7 +13420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17598,135 +13442,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [13] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2025), - [sym_preproc_elif] = STATE(2025), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [12] = { + [sym__block_item] = STATE(8), + [sym_preproc_include] = STATE(8), + [sym_preproc_def] = STATE(8), + [sym_preproc_function_def] = STATE(8), + [sym_preproc_call] = STATE(8), + [sym_preproc_if] = STATE(8), + [sym_preproc_ifdef] = STATE(8), + [sym_preproc_else] = STATE(1954), + [sym_preproc_elif] = STATE(1954), + [sym_preproc_elifdef] = STATE(1954), + [sym_function_definition] = STATE(8), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(8), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17734,10 +13586,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17747,7 +13599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17769,306 +13621,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [14] = { - [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_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(234), - [aux_sym_preproc_def_token1] = ACTIONS(237), - [aux_sym_preproc_if_token1] = ACTIONS(240), - [aux_sym_preproc_if_token2] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(243), - [aux_sym_preproc_elifdef_token1] = ACTIONS(243), - [aux_sym_preproc_elifdef_token2] = ACTIONS(243), - [sym_preproc_directive] = ACTIONS(248), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym___extension__] = ACTIONS(266), - [anon_sym_typedef] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(272), - [anon_sym___attribute__] = ACTIONS(275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(278), - [anon_sym___declspec] = ACTIONS(281), - [anon_sym___cdecl] = ACTIONS(284), - [anon_sym___clrcall] = ACTIONS(284), - [anon_sym___stdcall] = ACTIONS(284), - [anon_sym___fastcall] = ACTIONS(284), - [anon_sym___thiscall] = ACTIONS(284), - [anon_sym___vectorcall] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_signed] = ACTIONS(290), - [anon_sym_unsigned] = ACTIONS(290), - [anon_sym_long] = ACTIONS(290), - [anon_sym_short] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym___inline] = ACTIONS(293), - [anon_sym___inline__] = ACTIONS(293), - [anon_sym___forceinline] = ACTIONS(293), - [anon_sym_thread_local] = ACTIONS(293), - [anon_sym___thread] = ACTIONS(293), - [anon_sym_const] = ACTIONS(296), - [anon_sym_constexpr] = ACTIONS(296), - [anon_sym_volatile] = ACTIONS(296), - [anon_sym_restrict] = ACTIONS(296), - [anon_sym___restrict__] = ACTIONS(296), - [anon_sym__Atomic] = ACTIONS(296), - [anon_sym__Noreturn] = ACTIONS(296), - [anon_sym_noreturn] = ACTIONS(296), - [sym_primitive_type] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(305), - [anon_sym_union] = ACTIONS(308), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(314), - [anon_sym_case] = ACTIONS(317), - [anon_sym_default] = ACTIONS(320), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(329), - [anon_sym_return] = ACTIONS(332), - [anon_sym_break] = ACTIONS(335), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_goto] = ACTIONS(341), - [anon_sym___try] = ACTIONS(344), - [anon_sym___leave] = ACTIONS(347), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym___alignof__] = ACTIONS(356), - [anon_sym___alignof] = ACTIONS(356), - [anon_sym__alignof] = ACTIONS(356), - [anon_sym_alignof] = ACTIONS(356), - [anon_sym__Alignof] = ACTIONS(356), - [anon_sym_offsetof] = ACTIONS(359), - [anon_sym__Generic] = ACTIONS(362), - [anon_sym_asm] = ACTIONS(365), - [anon_sym___asm__] = ACTIONS(365), - [sym_number_literal] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(371), - [anon_sym_u_SQUOTE] = ACTIONS(371), - [anon_sym_U_SQUOTE] = ACTIONS(371), - [anon_sym_u8_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_L_DQUOTE] = ACTIONS(374), - [anon_sym_u_DQUOTE] = ACTIONS(374), - [anon_sym_U_DQUOTE] = ACTIONS(374), - [anon_sym_u8_DQUOTE] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(374), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [anon_sym_NULL] = ACTIONS(380), - [anon_sym_nullptr] = ACTIONS(380), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [15] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2071), - [sym_preproc_elif] = STATE(2071), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [13] = { + [sym__block_item] = STATE(2), + [sym_preproc_include] = STATE(2), + [sym_preproc_def] = STATE(2), + [sym_preproc_function_def] = STATE(2), + [sym_preproc_call] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_ifdef] = STATE(2), + [sym_preproc_else] = STATE(1806), + [sym_preproc_elif] = STATE(1806), + [sym_preproc_elifdef] = STATE(1806), + [sym_function_definition] = STATE(2), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(2), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18076,10 +13765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18089,7 +13778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18111,135 +13800,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [16] = { - [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(2095), - [sym_preproc_elif] = STATE(2095), - [sym_function_definition] = STATE(23), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(23), - [sym_seh_leave_statement] = STATE(23), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [14] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1898), + [sym_preproc_elif] = STATE(1898), + [sym_preproc_elifdef] = STATE(1898), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18247,10 +13944,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18260,7 +13957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18282,135 +13979,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [17] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2017), - [sym_preproc_elif] = STATE(2017), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [15] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1755), + [sym_preproc_elif] = STATE(1755), + [sym_preproc_elifdef] = STATE(1755), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18418,10 +14123,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18431,7 +14136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18453,135 +14158,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [18] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(2081), - [sym_preproc_elif] = STATE(2081), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [16] = { + [sym__block_item] = STATE(14), + [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(1943), + [sym_preproc_elif] = STATE(1943), + [sym_preproc_elifdef] = STATE(1943), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(14), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18589,10 +14302,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18602,7 +14315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18624,135 +14337,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [19] = { - [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(1986), - [sym_preproc_elif] = STATE(1986), - [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(17), - [sym_seh_leave_statement] = STATE(17), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [17] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1746), + [sym_preproc_elif] = STATE(1746), + [sym_preproc_elifdef] = STATE(1746), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18760,10 +14481,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18773,7 +14494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18795,135 +14516,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [20] = { - [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(2201), - [sym_preproc_elif] = STATE(2201), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(12), - [sym_seh_leave_statement] = STATE(12), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [18] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1941), + [sym_preproc_elif] = STATE(1941), + [sym_preproc_elifdef] = STATE(1941), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18931,10 +14660,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18944,7 +14673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18966,135 +14695,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [21] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1948), - [sym_preproc_elif] = STATE(1948), - [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym_seh_try_statement] = STATE(13), - [sym_seh_leave_statement] = STATE(13), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [19] = { + [sym__block_item] = STATE(5), + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_call] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(1779), + [sym_preproc_elif] = STATE(1779), + [sym_preproc_elifdef] = STATE(1779), + [sym_function_definition] = STATE(5), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(5), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19102,10 +14839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19115,7 +14852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19137,135 +14874,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [22] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2097), - [sym_preproc_elif] = STATE(2097), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(397), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [20] = { + [sym__block_item] = STATE(18), + [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(1741), + [sym_preproc_elif] = STATE(1741), + [sym_preproc_elifdef] = STATE(1741), + [sym_function_definition] = STATE(18), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(18), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19273,10 +15018,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19286,7 +15031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19308,135 +15053,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [23] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2138), - [sym_preproc_elif] = STATE(2138), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(399), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [21] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1733), + [sym_preproc_elif] = STATE(1733), + [sym_preproc_elifdef] = STATE(1733), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19444,10 +15197,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19457,7 +15210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19479,135 +15232,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [24] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(1990), - [sym_preproc_elif] = STATE(1990), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(401), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [22] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(201), + [aux_sym_preproc_include_token1] = ACTIONS(204), + [aux_sym_preproc_def_token1] = ACTIONS(207), + [aux_sym_preproc_if_token1] = ACTIONS(210), + [aux_sym_preproc_if_token2] = ACTIONS(213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(215), + [aux_sym_preproc_else_token1] = ACTIONS(213), + [aux_sym_preproc_elif_token1] = ACTIONS(213), + [aux_sym_preproc_elifdef_token1] = ACTIONS(213), + [aux_sym_preproc_elifdef_token2] = ACTIONS(213), + [sym_preproc_directive] = ACTIONS(218), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(224), + [anon_sym_TILDE] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(230), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_SEMI] = ACTIONS(233), + [anon_sym___extension__] = ACTIONS(236), + [anon_sym_typedef] = ACTIONS(239), + [anon_sym_extern] = ACTIONS(242), + [anon_sym___attribute__] = ACTIONS(245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(248), + [anon_sym___declspec] = ACTIONS(251), + [anon_sym___cdecl] = ACTIONS(254), + [anon_sym___clrcall] = ACTIONS(254), + [anon_sym___stdcall] = ACTIONS(254), + [anon_sym___fastcall] = ACTIONS(254), + [anon_sym___thiscall] = ACTIONS(254), + [anon_sym___vectorcall] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_signed] = ACTIONS(260), + [anon_sym_unsigned] = ACTIONS(260), + [anon_sym_long] = ACTIONS(260), + [anon_sym_short] = ACTIONS(260), + [anon_sym_static] = ACTIONS(263), + [anon_sym_auto] = ACTIONS(263), + [anon_sym_register] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(263), + [anon_sym___inline] = ACTIONS(263), + [anon_sym___inline__] = ACTIONS(263), + [anon_sym___forceinline] = ACTIONS(263), + [anon_sym_thread_local] = ACTIONS(263), + [anon_sym___thread] = ACTIONS(263), + [anon_sym_const] = ACTIONS(266), + [anon_sym_constexpr] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_restrict] = ACTIONS(266), + [anon_sym___restrict__] = ACTIONS(266), + [anon_sym__Atomic] = ACTIONS(266), + [anon_sym__Noreturn] = ACTIONS(266), + [anon_sym_noreturn] = ACTIONS(266), + [anon_sym_alignas] = ACTIONS(269), + [anon_sym__Alignas] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(272), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(278), + [anon_sym_union] = ACTIONS(281), + [anon_sym_if] = ACTIONS(284), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_case] = ACTIONS(290), + [anon_sym_default] = ACTIONS(293), + [anon_sym_while] = ACTIONS(296), + [anon_sym_do] = ACTIONS(299), + [anon_sym_for] = ACTIONS(302), + [anon_sym_return] = ACTIONS(305), + [anon_sym_break] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(311), + [anon_sym_goto] = ACTIONS(314), + [anon_sym___try] = ACTIONS(317), + [anon_sym___leave] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_sizeof] = ACTIONS(326), + [anon_sym___alignof__] = ACTIONS(329), + [anon_sym___alignof] = ACTIONS(329), + [anon_sym__alignof] = ACTIONS(329), + [anon_sym_alignof] = ACTIONS(329), + [anon_sym__Alignof] = ACTIONS(329), + [anon_sym_offsetof] = ACTIONS(332), + [anon_sym__Generic] = ACTIONS(335), + [anon_sym_asm] = ACTIONS(338), + [anon_sym___asm__] = ACTIONS(338), + [sym_number_literal] = ACTIONS(341), + [anon_sym_L_SQUOTE] = ACTIONS(344), + [anon_sym_u_SQUOTE] = ACTIONS(344), + [anon_sym_U_SQUOTE] = ACTIONS(344), + [anon_sym_u8_SQUOTE] = ACTIONS(344), + [anon_sym_SQUOTE] = ACTIONS(344), + [anon_sym_L_DQUOTE] = ACTIONS(347), + [anon_sym_u_DQUOTE] = ACTIONS(347), + [anon_sym_U_DQUOTE] = ACTIONS(347), + [anon_sym_u8_DQUOTE] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [sym_true] = ACTIONS(350), + [sym_false] = ACTIONS(350), + [anon_sym_NULL] = ACTIONS(353), + [anon_sym_nullptr] = ACTIONS(353), + [sym_comment] = ACTIONS(3), + }, + [23] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19615,10 +15544,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19628,7 +15557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(378), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19650,135 +15580,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [25] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2026), - [sym_preproc_elif] = STATE(2026), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(403), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [24] = { + [sym__block_item] = STATE(27), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(27), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19786,10 +15716,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19799,7 +15729,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(406), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19821,135 +15752,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [26] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1976), - [sym_preproc_elif] = STATE(1976), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), + [25] = { + [sym__block_item] = STATE(42), + [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__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(42), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19957,10 +15888,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -19970,7 +15901,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(408), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19992,299 +15924,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [27] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(407), - [aux_sym_preproc_include_token1] = ACTIONS(410), - [aux_sym_preproc_def_token1] = ACTIONS(413), + [26] = { + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(273), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1099), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(691), + [sym_compound_statement] = STATE(229), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(787), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(271), + [sym_statement] = STATE(31), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(410), + [aux_sym_preproc_include_token1] = ACTIONS(412), + [aux_sym_preproc_def_token1] = ACTIONS(414), [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_if_token2] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(419), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(243), + [aux_sym_preproc_if_token2] = ACTIONS(418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), [sym_preproc_directive] = ACTIONS(422), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(425), - [anon_sym___extension__] = ACTIONS(428), - [anon_sym_typedef] = ACTIONS(431), - [anon_sym_extern] = ACTIONS(434), - [anon_sym___attribute__] = ACTIONS(275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(278), - [anon_sym___declspec] = ACTIONS(281), - [anon_sym___cdecl] = ACTIONS(284), - [anon_sym___clrcall] = ACTIONS(284), - [anon_sym___stdcall] = ACTIONS(284), - [anon_sym___fastcall] = ACTIONS(284), - [anon_sym___thiscall] = ACTIONS(284), - [anon_sym___vectorcall] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_signed] = ACTIONS(290), - [anon_sym_unsigned] = ACTIONS(290), - [anon_sym_long] = ACTIONS(290), - [anon_sym_short] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym___inline] = ACTIONS(293), - [anon_sym___inline__] = ACTIONS(293), - [anon_sym___forceinline] = ACTIONS(293), - [anon_sym_thread_local] = ACTIONS(293), - [anon_sym___thread] = ACTIONS(293), - [anon_sym_const] = ACTIONS(296), - [anon_sym_constexpr] = ACTIONS(296), - [anon_sym_volatile] = ACTIONS(296), - [anon_sym_restrict] = ACTIONS(296), - [anon_sym___restrict__] = ACTIONS(296), - [anon_sym__Atomic] = ACTIONS(296), - [anon_sym__Noreturn] = ACTIONS(296), - [anon_sym_noreturn] = ACTIONS(296), - [sym_primitive_type] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(305), - [anon_sym_union] = ACTIONS(308), - [anon_sym_if] = ACTIONS(440), - [anon_sym_switch] = ACTIONS(443), - [anon_sym_case] = ACTIONS(446), - [anon_sym_default] = ACTIONS(449), - [anon_sym_while] = ACTIONS(452), - [anon_sym_do] = ACTIONS(455), - [anon_sym_for] = ACTIONS(458), - [anon_sym_return] = ACTIONS(461), - [anon_sym_break] = ACTIONS(464), - [anon_sym_continue] = ACTIONS(467), - [anon_sym_goto] = ACTIONS(470), - [anon_sym___try] = ACTIONS(473), - [anon_sym___leave] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym___alignof__] = ACTIONS(356), - [anon_sym___alignof] = ACTIONS(356), - [anon_sym__alignof] = ACTIONS(356), - [anon_sym_alignof] = ACTIONS(356), - [anon_sym__Alignof] = ACTIONS(356), - [anon_sym_offsetof] = ACTIONS(359), - [anon_sym__Generic] = ACTIONS(362), - [anon_sym_asm] = ACTIONS(365), - [anon_sym___asm__] = ACTIONS(365), - [sym_number_literal] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(371), - [anon_sym_u_SQUOTE] = ACTIONS(371), - [anon_sym_U_SQUOTE] = ACTIONS(371), - [anon_sym_u8_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_L_DQUOTE] = ACTIONS(374), - [anon_sym_u_DQUOTE] = ACTIONS(374), - [anon_sym_U_DQUOTE] = ACTIONS(374), - [anon_sym_u8_DQUOTE] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(374), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [anon_sym_NULL] = ACTIONS(380), - [anon_sym_nullptr] = ACTIONS(380), - [sym_comment] = ACTIONS(3), - }, - [28] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20292,10 +16061,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), + [anon_sym_extern] = ACTIONS(430), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -20305,8 +16074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20328,130 +16096,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [29] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [27] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20459,10 +16232,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -20472,8 +16245,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(460), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20495,130 +16268,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [30] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(28), - [sym_seh_leave_statement] = STATE(28), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [28] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20626,10 +16404,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -20639,8 +16417,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(462), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20662,130 +16440,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [31] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [29] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20793,10 +16576,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -20806,8 +16589,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(464), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20829,130 +16612,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [32] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [30] = { + [sym__block_item] = STATE(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__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(28), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20960,10 +16748,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -20973,8 +16761,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(466), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20996,130 +16784,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [31] = { + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(273), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1099), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(691), + [sym_compound_statement] = STATE(229), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(787), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(271), + [sym_statement] = STATE(31), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(468), + [aux_sym_preproc_include_token1] = ACTIONS(471), + [aux_sym_preproc_def_token1] = ACTIONS(474), + [aux_sym_preproc_if_token1] = ACTIONS(477), + [aux_sym_preproc_if_token2] = ACTIONS(213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(480), + [sym_preproc_directive] = ACTIONS(483), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(224), + [anon_sym_TILDE] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(230), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym___extension__] = ACTIONS(489), + [anon_sym_typedef] = ACTIONS(492), + [anon_sym_extern] = ACTIONS(495), + [anon_sym___attribute__] = ACTIONS(245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(248), + [anon_sym___declspec] = ACTIONS(251), + [anon_sym___cdecl] = ACTIONS(254), + [anon_sym___clrcall] = ACTIONS(254), + [anon_sym___stdcall] = ACTIONS(254), + [anon_sym___fastcall] = ACTIONS(254), + [anon_sym___thiscall] = ACTIONS(254), + [anon_sym___vectorcall] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_signed] = ACTIONS(260), + [anon_sym_unsigned] = ACTIONS(260), + [anon_sym_long] = ACTIONS(260), + [anon_sym_short] = ACTIONS(260), + [anon_sym_static] = ACTIONS(263), + [anon_sym_auto] = ACTIONS(263), + [anon_sym_register] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(263), + [anon_sym___inline] = ACTIONS(263), + [anon_sym___inline__] = ACTIONS(263), + [anon_sym___forceinline] = ACTIONS(263), + [anon_sym_thread_local] = ACTIONS(263), + [anon_sym___thread] = ACTIONS(263), + [anon_sym_const] = ACTIONS(266), + [anon_sym_constexpr] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_restrict] = ACTIONS(266), + [anon_sym___restrict__] = ACTIONS(266), + [anon_sym__Atomic] = ACTIONS(266), + [anon_sym__Noreturn] = ACTIONS(266), + [anon_sym_noreturn] = ACTIONS(266), + [anon_sym_alignas] = ACTIONS(269), + [anon_sym__Alignas] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(272), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(278), + [anon_sym_union] = ACTIONS(281), + [anon_sym_if] = ACTIONS(501), + [anon_sym_switch] = ACTIONS(504), [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_default] = ACTIONS(510), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(516), + [anon_sym_for] = ACTIONS(519), + [anon_sym_return] = ACTIONS(522), + [anon_sym_break] = ACTIONS(525), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_goto] = ACTIONS(531), + [anon_sym___try] = ACTIONS(534), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_sizeof] = ACTIONS(326), + [anon_sym___alignof__] = ACTIONS(329), + [anon_sym___alignof] = ACTIONS(329), + [anon_sym__alignof] = ACTIONS(329), + [anon_sym_alignof] = ACTIONS(329), + [anon_sym__Alignof] = ACTIONS(329), + [anon_sym_offsetof] = ACTIONS(332), + [anon_sym__Generic] = ACTIONS(335), + [anon_sym_asm] = ACTIONS(338), + [anon_sym___asm__] = ACTIONS(338), + [sym_number_literal] = ACTIONS(341), + [anon_sym_L_SQUOTE] = ACTIONS(344), + [anon_sym_u_SQUOTE] = ACTIONS(344), + [anon_sym_U_SQUOTE] = ACTIONS(344), + [anon_sym_u8_SQUOTE] = ACTIONS(344), + [anon_sym_SQUOTE] = ACTIONS(344), + [anon_sym_L_DQUOTE] = ACTIONS(347), + [anon_sym_u_DQUOTE] = ACTIONS(347), + [anon_sym_U_DQUOTE] = ACTIONS(347), + [anon_sym_u8_DQUOTE] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [sym_true] = ACTIONS(350), + [sym_false] = ACTIONS(350), + [anon_sym_NULL] = ACTIONS(353), + [anon_sym_nullptr] = ACTIONS(353), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_preproc_include] = STATE(44), - [sym_preproc_def] = STATE(44), - [sym_preproc_function_def] = STATE(44), - [sym_preproc_call] = STATE(44), - [sym_preproc_if] = STATE(44), - [sym_preproc_ifdef] = STATE(44), - [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_case_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym_seh_try_statement] = STATE(44), - [sym_seh_leave_statement] = STATE(44), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [32] = { + [sym__block_item] = STATE(33), + [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__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21127,10 +17092,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -21140,8 +17105,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(540), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21163,130 +17128,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [34] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [33] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21294,10 +17264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -21307,8 +17277,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(542), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21330,297 +17300,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [35] = { - [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__old_style_function_definition] = STATE(356), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(860), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(541), - [aux_sym_preproc_include_token1] = ACTIONS(544), - [aux_sym_preproc_def_token1] = ACTIONS(547), - [aux_sym_preproc_if_token1] = ACTIONS(550), - [aux_sym_preproc_if_token2] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(553), - [sym_preproc_directive] = ACTIONS(556), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym___extension__] = ACTIONS(562), - [anon_sym_typedef] = ACTIONS(565), - [anon_sym_extern] = ACTIONS(568), - [anon_sym___attribute__] = ACTIONS(275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(278), - [anon_sym___declspec] = ACTIONS(281), - [anon_sym___cdecl] = ACTIONS(284), - [anon_sym___clrcall] = ACTIONS(284), - [anon_sym___stdcall] = ACTIONS(284), - [anon_sym___fastcall] = ACTIONS(284), - [anon_sym___thiscall] = ACTIONS(284), - [anon_sym___vectorcall] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_signed] = ACTIONS(290), - [anon_sym_unsigned] = ACTIONS(290), - [anon_sym_long] = ACTIONS(290), - [anon_sym_short] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym___inline] = ACTIONS(293), - [anon_sym___inline__] = ACTIONS(293), - [anon_sym___forceinline] = ACTIONS(293), - [anon_sym_thread_local] = ACTIONS(293), - [anon_sym___thread] = ACTIONS(293), - [anon_sym_const] = ACTIONS(296), - [anon_sym_constexpr] = ACTIONS(296), - [anon_sym_volatile] = ACTIONS(296), - [anon_sym_restrict] = ACTIONS(296), - [anon_sym___restrict__] = ACTIONS(296), - [anon_sym__Atomic] = ACTIONS(296), - [anon_sym__Noreturn] = ACTIONS(296), - [anon_sym_noreturn] = ACTIONS(296), - [sym_primitive_type] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(305), - [anon_sym_union] = ACTIONS(308), - [anon_sym_if] = ACTIONS(574), - [anon_sym_switch] = ACTIONS(577), - [anon_sym_case] = ACTIONS(580), - [anon_sym_default] = ACTIONS(583), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(589), - [anon_sym_for] = ACTIONS(592), - [anon_sym_return] = ACTIONS(595), - [anon_sym_break] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(601), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(607), - [anon_sym___leave] = ACTIONS(610), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym___alignof__] = ACTIONS(356), - [anon_sym___alignof] = ACTIONS(356), - [anon_sym__alignof] = ACTIONS(356), - [anon_sym_alignof] = ACTIONS(356), - [anon_sym__Alignof] = ACTIONS(356), - [anon_sym_offsetof] = ACTIONS(359), - [anon_sym__Generic] = ACTIONS(362), - [anon_sym_asm] = ACTIONS(365), - [anon_sym___asm__] = ACTIONS(365), - [sym_number_literal] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(371), - [anon_sym_u_SQUOTE] = ACTIONS(371), - [anon_sym_U_SQUOTE] = ACTIONS(371), - [anon_sym_u8_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_L_DQUOTE] = ACTIONS(374), - [anon_sym_u_DQUOTE] = ACTIONS(374), - [anon_sym_U_DQUOTE] = ACTIONS(374), - [anon_sym_u8_DQUOTE] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(374), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [anon_sym_NULL] = ACTIONS(380), - [anon_sym_nullptr] = ACTIONS(380), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [36] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [34] = { + [sym__block_item] = STATE(41), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21628,10 +17436,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -21641,8 +17449,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(544), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21664,130 +17472,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [37] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [35] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21795,10 +17608,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -21808,8 +17621,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(546), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21831,130 +17644,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym_seh_try_statement] = STATE(31), - [sym_seh_leave_statement] = STATE(31), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [36] = { + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(273), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1099), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(691), + [sym_compound_statement] = STATE(229), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(787), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(271), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(410), + [aux_sym_preproc_include_token1] = ACTIONS(412), + [aux_sym_preproc_def_token1] = ACTIONS(414), + [aux_sym_preproc_if_token1] = ACTIONS(416), + [aux_sym_preproc_if_token2] = ACTIONS(548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [sym_preproc_directive] = ACTIONS(422), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21962,10 +17781,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), + [anon_sym_extern] = ACTIONS(430), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -21975,8 +17794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21998,130 +17816,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [39] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [37] = { + [sym__block_item] = STATE(23), + [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_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(23), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22129,10 +17952,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -22142,8 +17965,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(550), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22165,130 +17988,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [38] = { + [sym__block_item] = STATE(29), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(29), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22296,10 +18124,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -22309,8 +18137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(552), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22332,53 +18160,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [41] = { + [39] = { + [sym__block_item] = STATE(35), [sym_preproc_include] = STATE(35), [sym_preproc_def] = STATE(35), [sym_preproc_function_def] = STATE(35), @@ -22386,77 +18217,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(35), [sym_preproc_ifdef] = STATE(35), [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(356), + [sym__old_style_function_definition] = STATE(289), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1475), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(860), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(35), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(771), [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(625), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(629), - [aux_sym_preproc_if_token2] = ACTIONS(631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22464,10 +18296,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), - [anon_sym_extern] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -22477,7 +18309,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(554), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22499,130 +18332,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [42] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(45), - [sym_seh_leave_statement] = STATE(45), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(45), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [40] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(556), + [aux_sym_preproc_include_token1] = ACTIONS(559), + [aux_sym_preproc_def_token1] = ACTIONS(562), + [aux_sym_preproc_if_token1] = ACTIONS(565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(568), + [sym_preproc_directive] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(224), + [anon_sym_TILDE] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(230), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym___extension__] = ACTIONS(577), + [anon_sym_typedef] = ACTIONS(580), + [anon_sym_extern] = ACTIONS(583), + [anon_sym___attribute__] = ACTIONS(245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(248), + [anon_sym___declspec] = ACTIONS(251), + [anon_sym___cdecl] = ACTIONS(254), + [anon_sym___clrcall] = ACTIONS(254), + [anon_sym___stdcall] = ACTIONS(254), + [anon_sym___fastcall] = ACTIONS(254), + [anon_sym___thiscall] = ACTIONS(254), + [anon_sym___vectorcall] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_signed] = ACTIONS(260), + [anon_sym_unsigned] = ACTIONS(260), + [anon_sym_long] = ACTIONS(260), + [anon_sym_short] = ACTIONS(260), + [anon_sym_static] = ACTIONS(263), + [anon_sym_auto] = ACTIONS(263), + [anon_sym_register] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(263), + [anon_sym___inline] = ACTIONS(263), + [anon_sym___inline__] = ACTIONS(263), + [anon_sym___forceinline] = ACTIONS(263), + [anon_sym_thread_local] = ACTIONS(263), + [anon_sym___thread] = ACTIONS(263), + [anon_sym_const] = ACTIONS(266), + [anon_sym_constexpr] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_restrict] = ACTIONS(266), + [anon_sym___restrict__] = ACTIONS(266), + [anon_sym__Atomic] = ACTIONS(266), + [anon_sym__Noreturn] = ACTIONS(266), + [anon_sym_noreturn] = ACTIONS(266), + [anon_sym_alignas] = ACTIONS(269), + [anon_sym__Alignas] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(272), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(278), + [anon_sym_union] = ACTIONS(281), + [anon_sym_if] = ACTIONS(591), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_case] = ACTIONS(597), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(606), + [anon_sym_for] = ACTIONS(609), + [anon_sym_return] = ACTIONS(612), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_goto] = ACTIONS(621), + [anon_sym___try] = ACTIONS(624), + [anon_sym___leave] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_sizeof] = ACTIONS(326), + [anon_sym___alignof__] = ACTIONS(329), + [anon_sym___alignof] = ACTIONS(329), + [anon_sym__alignof] = ACTIONS(329), + [anon_sym_alignof] = ACTIONS(329), + [anon_sym__Alignof] = ACTIONS(329), + [anon_sym_offsetof] = ACTIONS(332), + [anon_sym__Generic] = ACTIONS(335), + [anon_sym_asm] = ACTIONS(338), + [anon_sym___asm__] = ACTIONS(338), + [sym_number_literal] = ACTIONS(341), + [anon_sym_L_SQUOTE] = ACTIONS(344), + [anon_sym_u_SQUOTE] = ACTIONS(344), + [anon_sym_U_SQUOTE] = ACTIONS(344), + [anon_sym_u8_SQUOTE] = ACTIONS(344), + [anon_sym_SQUOTE] = ACTIONS(344), + [anon_sym_L_DQUOTE] = ACTIONS(347), + [anon_sym_u_DQUOTE] = ACTIONS(347), + [anon_sym_U_DQUOTE] = ACTIONS(347), + [anon_sym_u8_DQUOTE] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [sym_true] = ACTIONS(350), + [sym_false] = ACTIONS(350), + [anon_sym_NULL] = ACTIONS(353), + [anon_sym_nullptr] = ACTIONS(353), + [sym_comment] = ACTIONS(3), + }, + [41] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22630,10 +18640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -22643,8 +18653,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(630), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22666,130 +18676,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [43] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym_seh_try_statement] = STATE(32), - [sym_seh_leave_statement] = STATE(32), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [42] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22797,10 +18812,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -22810,8 +18825,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(632), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22833,297 +18848,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [44] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(677), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [45] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [43] = { + [sym__top_level_item] = STATE(44), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym__old_style_function_definition] = STATE(359), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1101), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(697), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(785), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(380), + [sym__top_level_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym__top_level_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_expression] = STATE(1078), + [sym__string] = STATE(1076), + [sym_conditional_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(1076), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(1076), + [sym_cast_expression] = STATE(1076), + [sym_sizeof_expression] = STATE(1076), + [sym_alignof_expression] = STATE(1076), + [sym_offsetof_expression] = STATE(1076), + [sym_generic_expression] = STATE(1076), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(1076), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(898), + [sym_char_literal] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(1076), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(634), + [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(21), @@ -23131,10 +18982,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -23144,8 +18994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23167,130 +19016,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(93), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(99), + [sym_false] = ACTIONS(99), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [44] = { + [sym__top_level_item] = STATE(44), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym__old_style_function_definition] = STATE(359), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1101), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(697), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(785), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(380), + [sym__top_level_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym__top_level_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_expression] = STATE(1078), + [sym__string] = STATE(1076), + [sym_conditional_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(1076), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(1076), + [sym_cast_expression] = STATE(1076), + [sym_sizeof_expression] = STATE(1076), + [sym_alignof_expression] = STATE(1076), + [sym_offsetof_expression] = STATE(1076), + [sym_generic_expression] = STATE(1076), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(1076), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(898), + [sym_char_literal] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(1076), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), + [aux_sym_preproc_include_token1] = ACTIONS(641), + [aux_sym_preproc_def_token1] = ACTIONS(644), + [aux_sym_preproc_if_token1] = ACTIONS(647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(650), + [sym_preproc_directive] = ACTIONS(653), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(665), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym___extension__] = ACTIONS(668), + [anon_sym_typedef] = ACTIONS(671), + [anon_sym_extern] = ACTIONS(674), + [anon_sym___attribute__] = ACTIONS(677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(680), + [anon_sym___declspec] = ACTIONS(683), + [anon_sym___cdecl] = ACTIONS(686), + [anon_sym___clrcall] = ACTIONS(686), + [anon_sym___stdcall] = ACTIONS(686), + [anon_sym___fastcall] = ACTIONS(686), + [anon_sym___thiscall] = ACTIONS(686), + [anon_sym___vectorcall] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_signed] = ACTIONS(692), + [anon_sym_unsigned] = ACTIONS(692), + [anon_sym_long] = ACTIONS(692), + [anon_sym_short] = ACTIONS(692), + [anon_sym_static] = ACTIONS(695), + [anon_sym_auto] = ACTIONS(695), + [anon_sym_register] = ACTIONS(695), + [anon_sym_inline] = ACTIONS(695), + [anon_sym___inline] = ACTIONS(695), + [anon_sym___inline__] = ACTIONS(695), + [anon_sym___forceinline] = ACTIONS(695), + [anon_sym_thread_local] = ACTIONS(695), + [anon_sym___thread] = ACTIONS(695), + [anon_sym_const] = ACTIONS(698), + [anon_sym_constexpr] = ACTIONS(698), + [anon_sym_volatile] = ACTIONS(698), + [anon_sym_restrict] = ACTIONS(698), + [anon_sym___restrict__] = ACTIONS(698), + [anon_sym__Atomic] = ACTIONS(698), + [anon_sym__Noreturn] = ACTIONS(698), + [anon_sym_noreturn] = ACTIONS(698), + [anon_sym_alignas] = ACTIONS(701), + [anon_sym__Alignas] = ACTIONS(701), + [sym_primitive_type] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(710), + [anon_sym_union] = ACTIONS(713), + [anon_sym_if] = ACTIONS(716), + [anon_sym_switch] = ACTIONS(719), + [anon_sym_case] = ACTIONS(722), + [anon_sym_default] = ACTIONS(725), + [anon_sym_while] = ACTIONS(728), + [anon_sym_do] = ACTIONS(731), + [anon_sym_for] = ACTIONS(734), + [anon_sym_return] = ACTIONS(737), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_goto] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_sizeof] = ACTIONS(752), + [anon_sym___alignof__] = ACTIONS(755), + [anon_sym___alignof] = ACTIONS(755), + [anon_sym__alignof] = ACTIONS(755), + [anon_sym_alignof] = ACTIONS(755), + [anon_sym__Alignof] = ACTIONS(755), + [anon_sym_offsetof] = ACTIONS(758), + [anon_sym__Generic] = ACTIONS(761), + [anon_sym_asm] = ACTIONS(764), + [anon_sym___asm__] = ACTIONS(764), + [sym_number_literal] = ACTIONS(767), + [anon_sym_L_SQUOTE] = ACTIONS(770), + [anon_sym_u_SQUOTE] = ACTIONS(770), + [anon_sym_U_SQUOTE] = ACTIONS(770), + [anon_sym_u8_SQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(770), + [anon_sym_L_DQUOTE] = ACTIONS(773), + [anon_sym_u_DQUOTE] = ACTIONS(773), + [anon_sym_U_DQUOTE] = ACTIONS(773), + [anon_sym_u8_DQUOTE] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [anon_sym_NULL] = ACTIONS(779), + [anon_sym_nullptr] = ACTIONS(779), + [sym_comment] = ACTIONS(3), + }, + [45] = { + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(782), + [aux_sym_preproc_include_token1] = ACTIONS(785), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(785), + [aux_sym_preproc_if_token2] = ACTIONS(785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(785), + [aux_sym_preproc_else_token1] = ACTIONS(785), + [aux_sym_preproc_elif_token1] = ACTIONS(785), + [aux_sym_preproc_elifdef_token1] = ACTIONS(785), + [aux_sym_preproc_elifdef_token2] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(799), + [anon_sym___extension__] = ACTIONS(802), + [anon_sym_typedef] = ACTIONS(805), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym___cdecl] = ACTIONS(785), + [anon_sym___clrcall] = ACTIONS(785), + [anon_sym___stdcall] = ACTIONS(785), + [anon_sym___fastcall] = ACTIONS(785), + [anon_sym___thiscall] = ACTIONS(785), + [anon_sym___vectorcall] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(844), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(847), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(853), + [anon_sym_for] = ACTIONS(856), + [anon_sym_return] = ACTIONS(859), + [anon_sym_break] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_goto] = ACTIONS(868), + [anon_sym___try] = ACTIONS(871), + [anon_sym___leave] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), [sym_comment] = ACTIONS(3), }, [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [aux_sym_preproc_else_token1] = ACTIONS(912), + [aux_sym_preproc_elif_token1] = ACTIONS(912), + [aux_sym_preproc_elifdef_token1] = ACTIONS(912), + [aux_sym_preproc_elifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23298,21 +19470,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23334,84 +19505,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [47] = { - [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__old_style_function_definition] = STATE(362), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), [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), @@ -23421,43 +19585,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(49), [sym_seh_try_statement] = STATE(49), [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [aux_sym_preproc_else_token1] = ACTIONS(914), + [aux_sym_preproc_elif_token1] = ACTIONS(914), + [aux_sym_preproc_elifdef_token1] = ACTIONS(914), + [aux_sym_preproc_elifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23465,21 +19633,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(683), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23501,130 +19668,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [48] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym_seh_try_statement] = STATE(29), - [sym_seh_leave_statement] = STATE(29), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_if_token2] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [aux_sym_preproc_else_token1] = ACTIONS(916), + [aux_sym_preproc_elif_token1] = ACTIONS(916), + [aux_sym_preproc_elifdef_token1] = ACTIONS(916), + [aux_sym_preproc_elifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23632,21 +19796,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(685), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23668,465 +19831,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [49] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(687), - [aux_sym_preproc_include_token1] = ACTIONS(690), - [aux_sym_preproc_def_token1] = ACTIONS(693), - [aux_sym_preproc_if_token1] = ACTIONS(696), - [aux_sym_preproc_ifdef_token1] = ACTIONS(699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(699), - [sym_preproc_directive] = ACTIONS(702), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(705), - [anon_sym___extension__] = ACTIONS(708), - [anon_sym_typedef] = ACTIONS(711), - [anon_sym_extern] = ACTIONS(714), - [anon_sym___attribute__] = ACTIONS(275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(278), - [anon_sym___declspec] = ACTIONS(281), - [anon_sym___cdecl] = ACTIONS(284), - [anon_sym___clrcall] = ACTIONS(284), - [anon_sym___stdcall] = ACTIONS(284), - [anon_sym___fastcall] = ACTIONS(284), - [anon_sym___thiscall] = ACTIONS(284), - [anon_sym___vectorcall] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_signed] = ACTIONS(290), - [anon_sym_unsigned] = ACTIONS(290), - [anon_sym_long] = ACTIONS(290), - [anon_sym_short] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym___inline] = ACTIONS(293), - [anon_sym___inline__] = ACTIONS(293), - [anon_sym___forceinline] = ACTIONS(293), - [anon_sym_thread_local] = ACTIONS(293), - [anon_sym___thread] = ACTIONS(293), - [anon_sym_const] = ACTIONS(296), - [anon_sym_constexpr] = ACTIONS(296), - [anon_sym_volatile] = ACTIONS(296), - [anon_sym_restrict] = ACTIONS(296), - [anon_sym___restrict__] = ACTIONS(296), - [anon_sym__Atomic] = ACTIONS(296), - [anon_sym__Noreturn] = ACTIONS(296), - [anon_sym_noreturn] = ACTIONS(296), - [sym_primitive_type] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(305), - [anon_sym_union] = ACTIONS(308), - [anon_sym_if] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(725), - [anon_sym_case] = ACTIONS(728), - [anon_sym_default] = ACTIONS(731), - [anon_sym_while] = ACTIONS(734), - [anon_sym_do] = ACTIONS(737), - [anon_sym_for] = ACTIONS(740), - [anon_sym_return] = ACTIONS(743), - [anon_sym_break] = ACTIONS(746), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_goto] = ACTIONS(752), - [anon_sym___try] = ACTIONS(755), - [anon_sym___leave] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym___alignof__] = ACTIONS(356), - [anon_sym___alignof] = ACTIONS(356), - [anon_sym__alignof] = ACTIONS(356), - [anon_sym_alignof] = ACTIONS(356), - [anon_sym__Alignof] = ACTIONS(356), - [anon_sym_offsetof] = ACTIONS(359), - [anon_sym__Generic] = ACTIONS(362), - [anon_sym_asm] = ACTIONS(365), - [anon_sym___asm__] = ACTIONS(365), - [sym_number_literal] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(371), - [anon_sym_u_SQUOTE] = ACTIONS(371), - [anon_sym_U_SQUOTE] = ACTIONS(371), - [anon_sym_u8_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_L_DQUOTE] = ACTIONS(374), - [anon_sym_u_DQUOTE] = ACTIONS(374), - [anon_sym_U_DQUOTE] = ACTIONS(374), - [anon_sym_u8_DQUOTE] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(374), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [anon_sym_NULL] = ACTIONS(380), - [anon_sym_nullptr] = ACTIONS(380), - [sym_comment] = ACTIONS(3), - }, - [50] = { - [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__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(761), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [51] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(356), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(860), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(625), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(629), - [aux_sym_preproc_if_token2] = ACTIONS(763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(635), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [aux_sym_preproc_else_token1] = ACTIONS(918), + [aux_sym_preproc_elif_token1] = ACTIONS(918), + [aux_sym_preproc_elifdef_token1] = ACTIONS(918), + [aux_sym_preproc_elifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24134,20 +19959,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), - [anon_sym_extern] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -24169,128 +19994,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(462), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1477), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(856), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1128), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym__top_level_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1302), - [sym__expression_not_binary] = STATE(1305), - [sym_conditional_expression] = STATE(1305), - [sym_assignment_expression] = STATE(1305), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(1305), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(1305), - [sym_cast_expression] = STATE(1305), - [sym_sizeof_expression] = STATE(1305), - [sym_alignof_expression] = STATE(1305), - [sym_offsetof_expression] = STATE(1305), - [sym_generic_expression] = STATE(1305), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(1305), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(1305), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(1305), - [sym_concatenated_string] = STATE(1305), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(1305), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(765), - [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), + [50] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24298,19 +20118,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), + [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -24332,227 +20153,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(97), - [sym_false] = ACTIONS(97), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [53] = { - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(462), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1477), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(856), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1128), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym__top_level_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1302), - [sym__expression_not_binary] = STATE(1305), - [sym_conditional_expression] = STATE(1305), - [sym_assignment_expression] = STATE(1305), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(1305), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(1305), - [sym_cast_expression] = STATE(1305), - [sym_sizeof_expression] = STATE(1305), - [sym_alignof_expression] = STATE(1305), - [sym_offsetof_expression] = STATE(1305), - [sym_generic_expression] = STATE(1305), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(1305), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(1305), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(1305), - [sym_concatenated_string] = STATE(1305), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(1305), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(767), - [sym_identifier] = ACTIONS(769), - [aux_sym_preproc_include_token1] = ACTIONS(772), - [aux_sym_preproc_def_token1] = ACTIONS(775), - [aux_sym_preproc_if_token1] = ACTIONS(778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(781), - [sym_preproc_directive] = ACTIONS(784), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(790), - [anon_sym_TILDE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym___extension__] = ACTIONS(799), - [anon_sym_typedef] = ACTIONS(802), - [anon_sym_extern] = ACTIONS(805), - [anon_sym___attribute__] = ACTIONS(808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(811), - [anon_sym___declspec] = ACTIONS(814), - [anon_sym___cdecl] = ACTIONS(817), - [anon_sym___clrcall] = ACTIONS(817), - [anon_sym___stdcall] = ACTIONS(817), - [anon_sym___fastcall] = ACTIONS(817), - [anon_sym___thiscall] = ACTIONS(817), - [anon_sym___vectorcall] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_signed] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(823), - [anon_sym_long] = ACTIONS(823), - [anon_sym_short] = ACTIONS(823), - [anon_sym_static] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [anon_sym_register] = ACTIONS(826), - [anon_sym_inline] = ACTIONS(826), - [anon_sym___inline] = ACTIONS(826), - [anon_sym___inline__] = ACTIONS(826), - [anon_sym___forceinline] = ACTIONS(826), - [anon_sym_thread_local] = ACTIONS(826), - [anon_sym___thread] = ACTIONS(826), - [anon_sym_const] = ACTIONS(829), - [anon_sym_constexpr] = ACTIONS(829), - [anon_sym_volatile] = ACTIONS(829), - [anon_sym_restrict] = ACTIONS(829), - [anon_sym___restrict__] = ACTIONS(829), - [anon_sym__Atomic] = ACTIONS(829), - [anon_sym__Noreturn] = ACTIONS(829), - [anon_sym_noreturn] = ACTIONS(829), - [sym_primitive_type] = ACTIONS(832), - [anon_sym_enum] = ACTIONS(835), - [anon_sym_struct] = ACTIONS(838), - [anon_sym_union] = ACTIONS(841), - [anon_sym_if] = ACTIONS(844), - [anon_sym_switch] = ACTIONS(847), - [anon_sym_case] = ACTIONS(850), - [anon_sym_default] = ACTIONS(853), - [anon_sym_while] = ACTIONS(856), - [anon_sym_do] = ACTIONS(859), - [anon_sym_for] = ACTIONS(862), - [anon_sym_return] = ACTIONS(865), - [anon_sym_break] = ACTIONS(868), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_goto] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_sizeof] = ACTIONS(880), - [anon_sym___alignof__] = ACTIONS(883), - [anon_sym___alignof] = ACTIONS(883), - [anon_sym__alignof] = ACTIONS(883), - [anon_sym_alignof] = ACTIONS(883), - [anon_sym__Alignof] = ACTIONS(883), - [anon_sym_offsetof] = ACTIONS(886), - [anon_sym__Generic] = ACTIONS(889), - [anon_sym_asm] = ACTIONS(892), - [anon_sym___asm__] = ACTIONS(892), - [sym_number_literal] = ACTIONS(895), - [anon_sym_L_SQUOTE] = ACTIONS(898), - [anon_sym_u_SQUOTE] = ACTIONS(898), - [anon_sym_U_SQUOTE] = ACTIONS(898), - [anon_sym_u8_SQUOTE] = ACTIONS(898), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_L_DQUOTE] = ACTIONS(901), - [anon_sym_u_DQUOTE] = ACTIONS(901), - [anon_sym_U_DQUOTE] = ACTIONS(901), - [anon_sym_u8_DQUOTE] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [anon_sym_NULL] = ACTIONS(907), - [anon_sym_nullptr] = ACTIONS(907), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [54] = { + [51] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -24567,47 +20233,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(55), [sym_seh_try_statement] = STATE(55), [sym_seh_leave_statement] = STATE(55), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [aux_sym_preproc_else_token1] = ACTIONS(912), - [aux_sym_preproc_elif_token1] = ACTIONS(912), - [aux_sym_preproc_elifdef_token1] = ACTIONS(912), - [aux_sym_preproc_elifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24615,20 +20277,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -24650,444 +20312,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [55] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(55), - [sym_seh_leave_statement] = STATE(55), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_if_token2] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [aux_sym_preproc_else_token1] = ACTIONS(917), - [aux_sym_preproc_elif_token1] = ACTIONS(917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym___extension__] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(937), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(985), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(997), - [anon_sym___try] = ACTIONS(1000), - [anon_sym___leave] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [56] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(55), - [sym_seh_leave_statement] = STATE(55), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [aux_sym_preproc_else_token1] = ACTIONS(1039), - [aux_sym_preproc_elif_token1] = ACTIONS(1039), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token2] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [aux_sym_preproc_else_token1] = ACTIONS(1041), - [aux_sym_preproc_elif_token1] = ACTIONS(1041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [52] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25095,20 +20435,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(924), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25130,124 +20471,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [aux_sym_preproc_else_token1] = ACTIONS(1043), - [aux_sym_preproc_elif_token1] = ACTIONS(1043), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [53] = { + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_if_token2] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25255,20 +20595,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25290,279 +20630,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [59] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_if_token2] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [aux_sym_preproc_else_token1] = ACTIONS(917), - [aux_sym_preproc_elif_token1] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym___extension__] = ACTIONS(1051), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [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___try] = ACTIONS(1087), - [anon_sym___leave] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1093), + [54] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(57), + [sym_seh_leave_statement] = STATE(57), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(57), + [ts_builtin_sym_end] = ACTIONS(926), + [sym_identifier] = ACTIONS(928), [aux_sym_preproc_include_token1] = ACTIONS(912), [aux_sym_preproc_def_token1] = ACTIONS(912), [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), [aux_sym_preproc_ifdef_token1] = ACTIONS(912), [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [aux_sym_preproc_else_token1] = ACTIONS(912), - [aux_sym_preproc_elif_token1] = ACTIONS(912), [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -25571,9 +20754,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -25584,7 +20767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(912), [anon_sym___thiscall] = ACTIONS(912), [anon_sym___vectorcall] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25606,122 +20789,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(205), + [anon_sym_switch] = ACTIONS(61), [anon_sym_case] = ACTIONS(912), [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1093), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [aux_sym_preproc_else_token1] = ACTIONS(1039), - [aux_sym_preproc_elif_token1] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [55] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25729,20 +20913,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25764,122 +20948,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(1093), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [aux_sym_preproc_else_token1] = ACTIONS(1043), - [aux_sym_preproc_elif_token1] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [56] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(57), + [sym_seh_leave_statement] = STATE(57), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(57), + [ts_builtin_sym_end] = ACTIONS(936), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25887,20 +21072,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -25922,122 +21107,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1093), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token2] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [aux_sym_preproc_else_token1] = ACTIONS(1041), - [aux_sym_preproc_elif_token1] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [57] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(57), + [sym_seh_leave_statement] = STATE(57), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(57), + [ts_builtin_sym_end] = ACTIONS(938), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(785), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym___extension__] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym___cdecl] = ACTIONS(785), + [anon_sym___clrcall] = ACTIONS(785), + [anon_sym___stdcall] = ACTIONS(785), + [anon_sym___fastcall] = ACTIONS(785), + [anon_sym___thiscall] = ACTIONS(785), + [anon_sym___vectorcall] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(955), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(958), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(967), + [anon_sym_return] = ACTIONS(970), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(979), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + }, + [58] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(785), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(785), + [aux_sym_preproc_if_token2] = ACTIONS(785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(997), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym___cdecl] = ACTIONS(785), + [anon_sym___clrcall] = ACTIONS(785), + [anon_sym___stdcall] = ACTIONS(785), + [anon_sym___fastcall] = ACTIONS(785), + [anon_sym___thiscall] = ACTIONS(785), + [anon_sym___vectorcall] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(1006), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1027), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + }, + [59] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26045,20 +21548,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(926), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26080,120 +21584,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym_seh_try_statement] = STATE(74), - [sym_seh_leave_statement] = STATE(74), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [60] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(54), + [ts_builtin_sym_end] = ACTIONS(1036), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26201,19 +21708,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(930), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -26236,275 +21743,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [65] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym_seh_try_statement] = STATE(65), - [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym___extension__] = ACTIONS(1113), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1149), - [anon_sym___leave] = ACTIONS(1152), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym_seh_try_statement] = STATE(69), - [sym_seh_leave_statement] = STATE(69), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [61] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(56), + [sym_seh_leave_statement] = STATE(56), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(56), + [ts_builtin_sym_end] = ACTIONS(924), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26512,21 +21867,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26548,120 +21902,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [67] = { - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(73), - [sym_seh_leave_statement] = STATE(73), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(73), - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token2] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [62] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym_seh_try_statement] = STATE(59), + [sym_seh_leave_statement] = STATE(59), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26669,20 +22025,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(1036), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26704,119 +22061,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(647), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [68] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym_seh_try_statement] = STATE(78), - [sym_seh_leave_statement] = STATE(78), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [63] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26824,21 +22184,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(936), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26860,276 +22220,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [69] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(76), - [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [64] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1038), + [aux_sym_preproc_include_token1] = ACTIONS(785), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym___extension__] = ACTIONS(1044), + [anon_sym_typedef] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym___cdecl] = ACTIONS(785), + [anon_sym___clrcall] = ACTIONS(785), + [anon_sym___stdcall] = ACTIONS(785), + [anon_sym___fastcall] = ACTIONS(785), + [anon_sym___thiscall] = ACTIONS(785), + [anon_sym___vectorcall] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1071), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1077), + [anon_sym___try] = ACTIONS(1080), + [anon_sym___leave] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(72), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [65] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27137,19 +22496,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -27172,276 +22525,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [71] = { - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(75), - [sym_labeled_statement] = STATE(75), - [sym_expression_statement] = STATE(75), - [sym_if_statement] = STATE(75), - [sym_switch_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_do_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_return_statement] = STATE(75), - [sym_break_statement] = STATE(75), - [sym_continue_statement] = STATE(75), - [sym_goto_statement] = STATE(75), - [sym_seh_try_statement] = STATE(75), - [sym_seh_leave_statement] = STATE(75), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(75), - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(647), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym_seh_try_statement] = STATE(65), - [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [66] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [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_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_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27449,19 +22640,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -27484,120 +22669,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [67] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27605,20 +22784,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27640,69 +22813,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(647), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [74] = { + [68] = { [sym_declaration] = STATE(65), [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), [sym_attributed_statement] = STATE(65), [sym_labeled_statement] = STATE(65), [sym_expression_statement] = STATE(65), @@ -27717,43 +22891,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(65), [sym_seh_try_statement] = STATE(65), [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1163), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27761,19 +22928,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -27796,120 +22957,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [69] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym___extension__] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(1099), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(958), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(970), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(979), + [anon_sym___try] = ACTIONS(1108), + [anon_sym___leave] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + }, + [70] = { + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1845), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27917,20 +23199,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(645), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27952,431 +23226,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(647), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [76] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(76), - [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1171), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym___try] = ACTIONS(1207), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [77] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_if_token2] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym___try] = ACTIONS(1255), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [78] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_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_seh_try_statement] = STATE(76), - [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [71] = { + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1920), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28384,21 +23312,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1163), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28420,254 +23339,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [79] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(79), - [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1113), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1273), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [80] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(79), - [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1276), + [72] = { + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1966), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28675,14 +23425,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28704,111 +23452,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [81] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(79), - [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1276), + [73] = { + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1899), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28816,14 +23538,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28845,111 +23565,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [82] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(80), - [sym_seh_leave_statement] = STATE(80), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1276), + [74] = { + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1736), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28957,14 +23651,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28986,32181 +23678,30724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [75] = { + [sym_else_clause] = STATE(103), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token2] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [aux_sym_preproc_else_token1] = ACTIONS(1117), + [aux_sym_preproc_elif_token1] = ACTIONS(1117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym___cdecl] = ACTIONS(1117), + [anon_sym___clrcall] = ACTIONS(1117), + [anon_sym___stdcall] = ACTIONS(1117), + [anon_sym___fastcall] = ACTIONS(1117), + [anon_sym___thiscall] = ACTIONS(1117), + [anon_sym___vectorcall] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1121), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), + [sym_comment] = ACTIONS(3), + }, + [76] = { + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), + [sym_comment] = ACTIONS(3), + }, + [77] = { + [ts_builtin_sym_end] = ACTIONS(1127), + [sym_identifier] = ACTIONS(1129), + [aux_sym_preproc_include_token1] = ACTIONS(1129), + [aux_sym_preproc_def_token1] = ACTIONS(1129), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1127), + [aux_sym_preproc_if_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1129), + [sym_preproc_directive] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1127), + [anon_sym___declspec] = ACTIONS(1129), + [anon_sym___cdecl] = ACTIONS(1129), + [anon_sym___clrcall] = ACTIONS(1129), + [anon_sym___stdcall] = ACTIONS(1129), + [anon_sym___fastcall] = ACTIONS(1129), + [anon_sym___thiscall] = ACTIONS(1129), + [anon_sym___vectorcall] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym___inline] = ACTIONS(1129), + [anon_sym___inline__] = ACTIONS(1129), + [anon_sym___forceinline] = ACTIONS(1129), + [anon_sym_thread_local] = ACTIONS(1129), + [anon_sym___thread] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_constexpr] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym___restrict__] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym__Noreturn] = ACTIONS(1129), + [anon_sym_noreturn] = ACTIONS(1129), + [anon_sym_alignas] = ACTIONS(1129), + [anon_sym__Alignas] = ACTIONS(1129), + [sym_primitive_type] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_switch] = ACTIONS(1129), + [anon_sym_case] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_goto] = ACTIONS(1129), + [anon_sym___try] = ACTIONS(1129), + [anon_sym___except] = ACTIONS(1129), + [anon_sym___finally] = ACTIONS(1129), + [anon_sym___leave] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1129), + [anon_sym___alignof__] = ACTIONS(1129), + [anon_sym___alignof] = ACTIONS(1129), + [anon_sym__alignof] = ACTIONS(1129), + [anon_sym_alignof] = ACTIONS(1129), + [anon_sym__Alignof] = ACTIONS(1129), + [anon_sym_offsetof] = ACTIONS(1129), + [anon_sym__Generic] = ACTIONS(1129), + [anon_sym_asm] = ACTIONS(1129), + [anon_sym___asm__] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_u_SQUOTE] = ACTIONS(1127), + [anon_sym_U_SQUOTE] = ACTIONS(1127), + [anon_sym_u8_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_u_DQUOTE] = ACTIONS(1127), + [anon_sym_U_DQUOTE] = ACTIONS(1127), + [anon_sym_u8_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [anon_sym_NULL] = ACTIONS(1129), + [anon_sym_nullptr] = ACTIONS(1129), + [sym_comment] = ACTIONS(3), + }, + [78] = { + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [aux_sym_preproc_else_token1] = ACTIONS(1131), + [aux_sym_preproc_elif_token1] = ACTIONS(1131), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), + [sym_comment] = ACTIONS(3), + }, + [79] = { + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [aux_sym_preproc_else_token1] = ACTIONS(1131), + [aux_sym_preproc_elif_token1] = ACTIONS(1131), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), + [sym_comment] = ACTIONS(3), + }, + [80] = { + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token2] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [aux_sym_preproc_else_token1] = ACTIONS(1135), + [aux_sym_preproc_elif_token1] = ACTIONS(1135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), + [sym_comment] = ACTIONS(3), + }, + [81] = { + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token2] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [aux_sym_preproc_else_token1] = ACTIONS(1139), + [aux_sym_preproc_elif_token1] = ACTIONS(1139), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + }, + [82] = { + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [aux_sym_preproc_else_token1] = ACTIONS(1143), + [aux_sym_preproc_elif_token1] = ACTIONS(1143), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [83] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [84] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(1944), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token2] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [aux_sym_preproc_else_token1] = ACTIONS(1151), + [aux_sym_preproc_elif_token1] = ACTIONS(1151), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, [85] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(1983), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token2] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [aux_sym_preproc_else_token1] = ACTIONS(1155), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(2101), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token2] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [aux_sym_preproc_else_token1] = ACTIONS(1159), + [aux_sym_preproc_elif_token1] = ACTIONS(1159), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(2036), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token2] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [aux_sym_preproc_else_token1] = ACTIONS(1163), + [aux_sym_preproc_elif_token1] = ACTIONS(1163), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(2190), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token2] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [aux_sym_preproc_else_token1] = ACTIONS(1167), + [aux_sym_preproc_elif_token1] = ACTIONS(1167), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(2062), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token2] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [aux_sym_preproc_else_token1] = ACTIONS(1171), + [aux_sym_preproc_elif_token1] = ACTIONS(1171), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, [90] = { - [sym_else_clause] = STATE(104), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token2] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [aux_sym_preproc_else_token1] = ACTIONS(1175), + [aux_sym_preproc_elif_token1] = ACTIONS(1175), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, [91] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token2] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [aux_sym_preproc_else_token1] = ACTIONS(1179), + [aux_sym_preproc_elif_token1] = ACTIONS(1179), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, [92] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [aux_sym_preproc_else_token1] = ACTIONS(1302), - [aux_sym_preproc_elif_token1] = ACTIONS(1302), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token2] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [aux_sym_preproc_else_token1] = ACTIONS(1183), + [aux_sym_preproc_elif_token1] = ACTIONS(1183), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [93] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token2] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [aux_sym_preproc_else_token1] = ACTIONS(1187), + [aux_sym_preproc_elif_token1] = ACTIONS(1187), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, [94] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___except] = ACTIONS(1306), - [anon_sym___finally] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [aux_sym_preproc_else_token1] = ACTIONS(1191), + [aux_sym_preproc_elif_token1] = ACTIONS(1191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [95] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [aux_sym_preproc_else_token1] = ACTIONS(1195), + [aux_sym_preproc_elif_token1] = ACTIONS(1195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, [96] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token2] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [aux_sym_preproc_else_token1] = ACTIONS(1199), + [aux_sym_preproc_elif_token1] = ACTIONS(1199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, [97] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [aux_sym_preproc_else_token1] = ACTIONS(1191), + [aux_sym_preproc_elif_token1] = ACTIONS(1191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [98] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [aux_sym_preproc_else_token1] = ACTIONS(1322), - [aux_sym_preproc_elif_token1] = ACTIONS(1322), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [aux_sym_preproc_else_token1] = ACTIONS(1203), + [aux_sym_preproc_elif_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [99] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [aux_sym_preproc_else_token1] = ACTIONS(1326), - [aux_sym_preproc_elif_token1] = ACTIONS(1326), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [aux_sym_preproc_else_token1] = ACTIONS(1203), + [aux_sym_preproc_elif_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [100] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [aux_sym_preproc_else_token1] = ACTIONS(1330), - [aux_sym_preproc_elif_token1] = ACTIONS(1330), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [aux_sym_preproc_else_token1] = ACTIONS(1207), + [aux_sym_preproc_elif_token1] = ACTIONS(1207), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [101] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [aux_sym_preproc_else_token1] = ACTIONS(1334), - [aux_sym_preproc_elif_token1] = ACTIONS(1334), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token2] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [aux_sym_preproc_else_token1] = ACTIONS(1211), + [aux_sym_preproc_elif_token1] = ACTIONS(1211), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, [102] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token2] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [aux_sym_preproc_else_token1] = ACTIONS(1215), + [aux_sym_preproc_elif_token1] = ACTIONS(1215), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1217), + [anon_sym_u_SQUOTE] = ACTIONS(1217), + [anon_sym_U_SQUOTE] = ACTIONS(1217), + [anon_sym_u8_SQUOTE] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_L_DQUOTE] = ACTIONS(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, [103] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token2] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1219), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, [104] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [aux_sym_preproc_else_token1] = ACTIONS(1346), - [aux_sym_preproc_elif_token1] = ACTIONS(1346), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [anon_sym_COMMA] = ACTIONS(1169), + [anon_sym_RPAREN] = ACTIONS(1169), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___except] = ACTIONS(1167), + [anon_sym___finally] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, [105] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [anon_sym_COMMA] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___except] = ACTIONS(1330), - [anon_sym___finally] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token2] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [aux_sym_preproc_else_token1] = ACTIONS(1223), + [aux_sym_preproc_elif_token1] = ACTIONS(1223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, [106] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [aux_sym_preproc_else_token1] = ACTIONS(1350), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token2] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [aux_sym_preproc_else_token1] = ACTIONS(1227), + [aux_sym_preproc_elif_token1] = ACTIONS(1227), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, [107] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token2] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [aux_sym_preproc_else_token1] = ACTIONS(1231), + [aux_sym_preproc_elif_token1] = ACTIONS(1231), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, [108] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [aux_sym_preproc_else_token1] = ACTIONS(1358), - [aux_sym_preproc_elif_token1] = ACTIONS(1358), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token2] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [aux_sym_preproc_else_token1] = ACTIONS(1235), + [aux_sym_preproc_elif_token1] = ACTIONS(1235), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, [109] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token2] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [aux_sym_preproc_else_token1] = ACTIONS(1239), + [aux_sym_preproc_elif_token1] = ACTIONS(1239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [110] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token2] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [aux_sym_preproc_else_token1] = ACTIONS(1243), + [aux_sym_preproc_elif_token1] = ACTIONS(1243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [111] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1129), + [aux_sym_preproc_include_token1] = ACTIONS(1129), + [aux_sym_preproc_def_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token2] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1129), + [aux_sym_preproc_else_token1] = ACTIONS(1129), + [aux_sym_preproc_elif_token1] = ACTIONS(1129), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1129), + [sym_preproc_directive] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1127), + [anon_sym___declspec] = ACTIONS(1129), + [anon_sym___cdecl] = ACTIONS(1129), + [anon_sym___clrcall] = ACTIONS(1129), + [anon_sym___stdcall] = ACTIONS(1129), + [anon_sym___fastcall] = ACTIONS(1129), + [anon_sym___thiscall] = ACTIONS(1129), + [anon_sym___vectorcall] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym___inline] = ACTIONS(1129), + [anon_sym___inline__] = ACTIONS(1129), + [anon_sym___forceinline] = ACTIONS(1129), + [anon_sym_thread_local] = ACTIONS(1129), + [anon_sym___thread] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_constexpr] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym___restrict__] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym__Noreturn] = ACTIONS(1129), + [anon_sym_noreturn] = ACTIONS(1129), + [anon_sym_alignas] = ACTIONS(1129), + [anon_sym__Alignas] = ACTIONS(1129), + [sym_primitive_type] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_switch] = ACTIONS(1129), + [anon_sym_case] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_goto] = ACTIONS(1129), + [anon_sym___try] = ACTIONS(1129), + [anon_sym___leave] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1129), + [anon_sym___alignof__] = ACTIONS(1129), + [anon_sym___alignof] = ACTIONS(1129), + [anon_sym__alignof] = ACTIONS(1129), + [anon_sym_alignof] = ACTIONS(1129), + [anon_sym__Alignof] = ACTIONS(1129), + [anon_sym_offsetof] = ACTIONS(1129), + [anon_sym__Generic] = ACTIONS(1129), + [anon_sym_asm] = ACTIONS(1129), + [anon_sym___asm__] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_u_SQUOTE] = ACTIONS(1127), + [anon_sym_U_SQUOTE] = ACTIONS(1127), + [anon_sym_u8_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_u_DQUOTE] = ACTIONS(1127), + [anon_sym_U_DQUOTE] = ACTIONS(1127), + [anon_sym_u8_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [anon_sym_NULL] = ACTIONS(1129), + [anon_sym_nullptr] = ACTIONS(1129), [sym_comment] = ACTIONS(3), }, [112] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [aux_sym_preproc_else_token1] = ACTIONS(1362), - [aux_sym_preproc_elif_token1] = ACTIONS(1362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token2] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [aux_sym_preproc_else_token1] = ACTIONS(1247), + [aux_sym_preproc_elif_token1] = ACTIONS(1247), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, [113] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [aux_sym_preproc_else_token1] = ACTIONS(1207), + [aux_sym_preproc_elif_token1] = ACTIONS(1207), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [114] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token2] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [aux_sym_preproc_else_token1] = ACTIONS(1251), + [aux_sym_preproc_elif_token1] = ACTIONS(1251), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1251), + [anon_sym___leave] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, [115] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token2] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [aux_sym_preproc_else_token1] = ACTIONS(1255), + [aux_sym_preproc_elif_token1] = ACTIONS(1255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [116] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [aux_sym_preproc_else_token1] = ACTIONS(1259), + [aux_sym_preproc_elif_token1] = ACTIONS(1259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, [117] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token2] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [aux_sym_preproc_else_token1] = ACTIONS(1263), + [aux_sym_preproc_elif_token1] = ACTIONS(1263), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym___try] = ACTIONS(1263), + [anon_sym___leave] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, [118] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [aux_sym_preproc_else_token1] = ACTIONS(1267), + [aux_sym_preproc_elif_token1] = ACTIONS(1267), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym___try] = ACTIONS(1267), + [anon_sym___leave] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, [119] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token2] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [aux_sym_preproc_else_token1] = ACTIONS(1271), + [aux_sym_preproc_elif_token1] = ACTIONS(1271), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym___try] = ACTIONS(1271), + [anon_sym___leave] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, [120] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token2] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [aux_sym_preproc_else_token1] = ACTIONS(1275), + [aux_sym_preproc_elif_token1] = ACTIONS(1275), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, [121] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token2] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [aux_sym_preproc_else_token1] = ACTIONS(1279), + [aux_sym_preproc_elif_token1] = ACTIONS(1279), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym___try] = ACTIONS(1279), + [anon_sym___leave] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, [122] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [aux_sym_preproc_else_token1] = ACTIONS(1283), + [aux_sym_preproc_elif_token1] = ACTIONS(1283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, [123] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [aux_sym_preproc_else_token1] = ACTIONS(1390), - [aux_sym_preproc_elif_token1] = ACTIONS(1390), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token2] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [aux_sym_preproc_else_token1] = ACTIONS(1287), + [aux_sym_preproc_elif_token1] = ACTIONS(1287), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, [124] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [aux_sym_preproc_else_token1] = ACTIONS(1394), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token2] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [aux_sym_preproc_else_token1] = ACTIONS(1291), + [aux_sym_preproc_elif_token1] = ACTIONS(1291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, [125] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token2] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [aux_sym_preproc_else_token1] = ACTIONS(1295), + [aux_sym_preproc_elif_token1] = ACTIONS(1295), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, [126] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token2] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [aux_sym_preproc_else_token1] = ACTIONS(1299), + [aux_sym_preproc_elif_token1] = ACTIONS(1299), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym___try] = ACTIONS(1299), + [anon_sym___leave] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, [127] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token2] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [aux_sym_preproc_else_token1] = ACTIONS(1303), + [aux_sym_preproc_elif_token1] = ACTIONS(1303), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [128] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token2] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [aux_sym_preproc_else_token1] = ACTIONS(1307), + [aux_sym_preproc_elif_token1] = ACTIONS(1307), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [129] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token2] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [aux_sym_preproc_else_token1] = ACTIONS(1311), + [aux_sym_preproc_elif_token1] = ACTIONS(1311), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [130] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [aux_sym_preproc_else_token1] = ACTIONS(1398), - [aux_sym_preproc_elif_token1] = ACTIONS(1398), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [aux_sym_preproc_else_token1] = ACTIONS(1315), + [aux_sym_preproc_elif_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [131] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token2] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [aux_sym_preproc_else_token1] = ACTIONS(1319), + [aux_sym_preproc_elif_token1] = ACTIONS(1319), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [132] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token2] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [aux_sym_preproc_else_token1] = ACTIONS(1323), + [aux_sym_preproc_elif_token1] = ACTIONS(1323), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym___try] = ACTIONS(1323), + [anon_sym___leave] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, [133] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [aux_sym_preproc_else_token1] = ACTIONS(1327), + [aux_sym_preproc_elif_token1] = ACTIONS(1327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, [134] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [aux_sym_preproc_else_token1] = ACTIONS(1331), + [aux_sym_preproc_elif_token1] = ACTIONS(1331), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, [135] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token2] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [aux_sym_preproc_else_token1] = ACTIONS(1335), + [aux_sym_preproc_elif_token1] = ACTIONS(1335), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, [136] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token2] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [aux_sym_preproc_else_token1] = ACTIONS(1339), + [aux_sym_preproc_elif_token1] = ACTIONS(1339), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym___try] = ACTIONS(1339), + [anon_sym___leave] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, [137] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token2] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [aux_sym_preproc_else_token1] = ACTIONS(1343), + [aux_sym_preproc_elif_token1] = ACTIONS(1343), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym___try] = ACTIONS(1343), + [anon_sym___leave] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, [138] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [aux_sym_preproc_else_token1] = ACTIONS(1418), - [aux_sym_preproc_elif_token1] = ACTIONS(1418), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token2] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [aux_sym_preproc_else_token1] = ACTIONS(1347), + [aux_sym_preproc_elif_token1] = ACTIONS(1347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, [139] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [aux_sym_preproc_else_token1] = ACTIONS(1422), - [aux_sym_preproc_elif_token1] = ACTIONS(1422), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token2] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [aux_sym_preproc_else_token1] = ACTIONS(1351), + [aux_sym_preproc_elif_token1] = ACTIONS(1351), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, [140] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [aux_sym_preproc_else_token1] = ACTIONS(1426), - [aux_sym_preproc_elif_token1] = ACTIONS(1426), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token2] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [aux_sym_preproc_else_token1] = ACTIONS(1355), + [aux_sym_preproc_elif_token1] = ACTIONS(1355), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1355), + [anon_sym___cdecl] = ACTIONS(1355), + [anon_sym___clrcall] = ACTIONS(1355), + [anon_sym___stdcall] = ACTIONS(1355), + [anon_sym___fastcall] = ACTIONS(1355), + [anon_sym___thiscall] = ACTIONS(1355), + [anon_sym___vectorcall] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1355), + [anon_sym_unsigned] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_auto] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1355), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_constexpr] = ACTIONS(1355), + [anon_sym_volatile] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1355), + [anon_sym___restrict__] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1355), + [anon_sym__Noreturn] = ACTIONS(1355), + [anon_sym_noreturn] = ACTIONS(1355), + [anon_sym_alignas] = ACTIONS(1355), + [anon_sym__Alignas] = ACTIONS(1355), + [sym_primitive_type] = ACTIONS(1355), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_goto] = ACTIONS(1355), + [anon_sym___try] = ACTIONS(1355), + [anon_sym___leave] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1355), + [anon_sym___alignof__] = ACTIONS(1355), + [anon_sym___alignof] = ACTIONS(1355), + [anon_sym__alignof] = ACTIONS(1355), + [anon_sym_alignof] = ACTIONS(1355), + [anon_sym__Alignof] = ACTIONS(1355), + [anon_sym_offsetof] = ACTIONS(1355), + [anon_sym__Generic] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym___asm__] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1355), + [sym_false] = ACTIONS(1355), + [anon_sym_NULL] = ACTIONS(1355), + [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, [141] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [aux_sym_preproc_else_token1] = ACTIONS(1430), - [aux_sym_preproc_elif_token1] = ACTIONS(1430), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token2] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [aux_sym_preproc_else_token1] = ACTIONS(1361), + [aux_sym_preproc_elif_token1] = ACTIONS(1361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, [142] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [aux_sym_preproc_else_token1] = ACTIONS(1434), - [aux_sym_preproc_elif_token1] = ACTIONS(1434), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym___try] = ACTIONS(1434), - [anon_sym___leave] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token2] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), [sym_comment] = ACTIONS(3), }, [143] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [aux_sym_preproc_else_token1] = ACTIONS(1438), - [aux_sym_preproc_elif_token1] = ACTIONS(1438), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym___try] = ACTIONS(1438), - [anon_sym___leave] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [sym_else_clause] = STATE(224), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token2] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym___cdecl] = ACTIONS(1117), + [anon_sym___clrcall] = ACTIONS(1117), + [anon_sym___stdcall] = ACTIONS(1117), + [anon_sym___fastcall] = ACTIONS(1117), + [anon_sym___thiscall] = ACTIONS(1117), + [anon_sym___vectorcall] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1369), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, [144] = { - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [aux_sym_preproc_else_token1] = ACTIONS(1442), - [aux_sym_preproc_elif_token1] = ACTIONS(1442), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym___try] = ACTIONS(1442), - [anon_sym___leave] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), + [sym_else_clause] = STATE(211), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym___cdecl] = ACTIONS(1117), + [anon_sym___clrcall] = ACTIONS(1117), + [anon_sym___stdcall] = ACTIONS(1117), + [anon_sym___fastcall] = ACTIONS(1117), + [anon_sym___thiscall] = ACTIONS(1117), + [anon_sym___vectorcall] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, [145] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [aux_sym_preproc_else_token1] = ACTIONS(1446), - [aux_sym_preproc_elif_token1] = ACTIONS(1446), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), + [sym_else_clause] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(1119), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym___cdecl] = ACTIONS(1117), + [anon_sym___clrcall] = ACTIONS(1117), + [anon_sym___stdcall] = ACTIONS(1117), + [anon_sym___fastcall] = ACTIONS(1117), + [anon_sym___thiscall] = ACTIONS(1117), + [anon_sym___vectorcall] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, [146] = { - [sym_identifier] = ACTIONS(1450), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token2] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1450), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1450), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym___extension__] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), - [anon_sym___declspec] = ACTIONS(1450), - [anon_sym___cdecl] = ACTIONS(1450), - [anon_sym___clrcall] = ACTIONS(1450), - [anon_sym___stdcall] = ACTIONS(1450), - [anon_sym___fastcall] = ACTIONS(1450), - [anon_sym___thiscall] = ACTIONS(1450), - [anon_sym___vectorcall] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___inline] = ACTIONS(1450), - [anon_sym___inline__] = ACTIONS(1450), - [anon_sym___forceinline] = ACTIONS(1450), - [anon_sym_thread_local] = ACTIONS(1450), - [anon_sym___thread] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_constexpr] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym___restrict__] = ACTIONS(1450), - [anon_sym__Atomic] = ACTIONS(1450), - [anon_sym__Noreturn] = ACTIONS(1450), - [anon_sym_noreturn] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [anon_sym___try] = ACTIONS(1450), - [anon_sym___leave] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1450), - [anon_sym___alignof__] = ACTIONS(1450), - [anon_sym___alignof] = ACTIONS(1450), - [anon_sym__alignof] = ACTIONS(1450), - [anon_sym_alignof] = ACTIONS(1450), - [anon_sym__Alignof] = ACTIONS(1450), - [anon_sym_offsetof] = ACTIONS(1450), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1450), - [anon_sym___asm__] = ACTIONS(1450), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_L_SQUOTE] = ACTIONS(1452), - [anon_sym_u_SQUOTE] = ACTIONS(1452), - [anon_sym_U_SQUOTE] = ACTIONS(1452), - [anon_sym_u8_SQUOTE] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_L_DQUOTE] = ACTIONS(1452), - [anon_sym_u_DQUOTE] = ACTIONS(1452), - [anon_sym_U_DQUOTE] = ACTIONS(1452), - [anon_sym_u8_DQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [anon_sym_NULL] = ACTIONS(1450), - [anon_sym_nullptr] = ACTIONS(1450), + [ts_builtin_sym_end] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, [147] = { - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token2] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [aux_sym_preproc_else_token1] = ACTIONS(1454), - [aux_sym_preproc_elif_token1] = ACTIONS(1454), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym___try] = ACTIONS(1454), - [anon_sym___leave] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [148] = { - [sym_identifier] = ACTIONS(1458), - [aux_sym_preproc_include_token1] = ACTIONS(1458), - [aux_sym_preproc_def_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token2] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), - [aux_sym_preproc_else_token1] = ACTIONS(1458), - [aux_sym_preproc_elif_token1] = ACTIONS(1458), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1458), - [sym_preproc_directive] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym___extension__] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym___attribute__] = ACTIONS(1458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), - [anon_sym___declspec] = ACTIONS(1458), - [anon_sym___cdecl] = ACTIONS(1458), - [anon_sym___clrcall] = ACTIONS(1458), - [anon_sym___stdcall] = ACTIONS(1458), - [anon_sym___fastcall] = ACTIONS(1458), - [anon_sym___thiscall] = ACTIONS(1458), - [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_auto] = ACTIONS(1458), - [anon_sym_register] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym___inline] = ACTIONS(1458), - [anon_sym___inline__] = ACTIONS(1458), - [anon_sym___forceinline] = ACTIONS(1458), - [anon_sym_thread_local] = ACTIONS(1458), - [anon_sym___thread] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_constexpr] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_restrict] = ACTIONS(1458), - [anon_sym___restrict__] = ACTIONS(1458), - [anon_sym__Atomic] = ACTIONS(1458), - [anon_sym__Noreturn] = ACTIONS(1458), - [anon_sym_noreturn] = ACTIONS(1458), - [sym_primitive_type] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_goto] = ACTIONS(1458), - [anon_sym___try] = ACTIONS(1458), - [anon_sym___leave] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym___alignof__] = ACTIONS(1458), - [anon_sym___alignof] = ACTIONS(1458), - [anon_sym__alignof] = ACTIONS(1458), - [anon_sym_alignof] = ACTIONS(1458), - [anon_sym__Alignof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1458), - [anon_sym___asm__] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(1460), - [anon_sym_L_SQUOTE] = ACTIONS(1460), - [anon_sym_u_SQUOTE] = ACTIONS(1460), - [anon_sym_U_SQUOTE] = ACTIONS(1460), - [anon_sym_u8_SQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_L_DQUOTE] = ACTIONS(1460), - [anon_sym_u_DQUOTE] = ACTIONS(1460), - [anon_sym_U_DQUOTE] = ACTIONS(1460), - [anon_sym_u8_DQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [anon_sym_NULL] = ACTIONS(1458), - [anon_sym_nullptr] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, [149] = { - [sym_else_clause] = STATE(201), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [ts_builtin_sym_end] = ACTIONS(1237), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, [150] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, [151] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [aux_sym_preproc_else_token1] = ACTIONS(1468), - [aux_sym_preproc_elif_token1] = ACTIONS(1468), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, [152] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [aux_sym_preproc_else_token1] = ACTIONS(1472), - [aux_sym_preproc_elif_token1] = ACTIONS(1472), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, [153] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [aux_sym_preproc_else_token1] = ACTIONS(1476), - [aux_sym_preproc_elif_token1] = ACTIONS(1476), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, [154] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [aux_sym_preproc_else_token1] = ACTIONS(1480), - [aux_sym_preproc_elif_token1] = ACTIONS(1480), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, [155] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [aux_sym_preproc_else_token1] = ACTIONS(1484), - [aux_sym_preproc_elif_token1] = ACTIONS(1484), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, [156] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [aux_sym_preproc_else_token1] = ACTIONS(1488), - [aux_sym_preproc_elif_token1] = ACTIONS(1488), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1213), + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, [157] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [aux_sym_preproc_else_token1] = ACTIONS(1492), - [aux_sym_preproc_elif_token1] = ACTIONS(1492), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1221), + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, [158] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [aux_sym_preproc_else_token1] = ACTIONS(1496), - [aux_sym_preproc_elif_token1] = ACTIONS(1496), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, [159] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [aux_sym_preproc_else_token1] = ACTIONS(1500), - [aux_sym_preproc_elif_token1] = ACTIONS(1500), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, [160] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [aux_sym_preproc_else_token1] = ACTIONS(1504), - [aux_sym_preproc_elif_token1] = ACTIONS(1504), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, [161] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [aux_sym_preproc_else_token1] = ACTIONS(1322), - [aux_sym_preproc_elif_token1] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1173), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, [162] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1129), + [aux_sym_preproc_include_token1] = ACTIONS(1129), + [aux_sym_preproc_def_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1129), + [sym_preproc_directive] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1127), + [anon_sym___declspec] = ACTIONS(1129), + [anon_sym___cdecl] = ACTIONS(1129), + [anon_sym___clrcall] = ACTIONS(1129), + [anon_sym___stdcall] = ACTIONS(1129), + [anon_sym___fastcall] = ACTIONS(1129), + [anon_sym___thiscall] = ACTIONS(1129), + [anon_sym___vectorcall] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym___inline] = ACTIONS(1129), + [anon_sym___inline__] = ACTIONS(1129), + [anon_sym___forceinline] = ACTIONS(1129), + [anon_sym_thread_local] = ACTIONS(1129), + [anon_sym___thread] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_constexpr] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym___restrict__] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym__Noreturn] = ACTIONS(1129), + [anon_sym_noreturn] = ACTIONS(1129), + [anon_sym_alignas] = ACTIONS(1129), + [anon_sym__Alignas] = ACTIONS(1129), + [sym_primitive_type] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_switch] = ACTIONS(1129), + [anon_sym_case] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_goto] = ACTIONS(1129), + [anon_sym___try] = ACTIONS(1129), + [anon_sym___leave] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1129), + [anon_sym___alignof__] = ACTIONS(1129), + [anon_sym___alignof] = ACTIONS(1129), + [anon_sym__alignof] = ACTIONS(1129), + [anon_sym_alignof] = ACTIONS(1129), + [anon_sym__Alignof] = ACTIONS(1129), + [anon_sym_offsetof] = ACTIONS(1129), + [anon_sym__Generic] = ACTIONS(1129), + [anon_sym_asm] = ACTIONS(1129), + [anon_sym___asm__] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_u_SQUOTE] = ACTIONS(1127), + [anon_sym_U_SQUOTE] = ACTIONS(1127), + [anon_sym_u8_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_u_DQUOTE] = ACTIONS(1127), + [anon_sym_U_DQUOTE] = ACTIONS(1127), + [anon_sym_u8_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [anon_sym_NULL] = ACTIONS(1129), + [anon_sym_nullptr] = ACTIONS(1129), [sym_comment] = ACTIONS(3), }, [163] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [aux_sym_preproc_else_token1] = ACTIONS(1326), - [aux_sym_preproc_elif_token1] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1217), + [anon_sym_u_SQUOTE] = ACTIONS(1217), + [anon_sym_U_SQUOTE] = ACTIONS(1217), + [anon_sym_u8_SQUOTE] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_L_DQUOTE] = ACTIONS(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, [164] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [165] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [aux_sym_preproc_else_token1] = ACTIONS(1390), - [aux_sym_preproc_elif_token1] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [166] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [aux_sym_preproc_else_token1] = ACTIONS(1362), - [aux_sym_preproc_elif_token1] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token2] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, [167] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [168] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [169] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [aux_sym_preproc_else_token1] = ACTIONS(1302), - [aux_sym_preproc_elif_token1] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [170] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [171] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [aux_sym_preproc_else_token1] = ACTIONS(1358), - [aux_sym_preproc_elif_token1] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [172] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, [173] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token2] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, [174] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [175] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, [176] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, [177] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [178] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [aux_sym_preproc_else_token1] = ACTIONS(1330), - [aux_sym_preproc_elif_token1] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [179] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, [180] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [181] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1153), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, [182] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [183] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, [184] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [aux_sym_preproc_else_token1] = ACTIONS(1350), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, [185] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [186] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, [187] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [aux_sym_preproc_else_token1] = ACTIONS(1398), - [aux_sym_preproc_elif_token1] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [188] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [aux_sym_preproc_else_token1] = ACTIONS(1394), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1217), + [anon_sym_u_SQUOTE] = ACTIONS(1217), + [anon_sym_U_SQUOTE] = ACTIONS(1217), + [anon_sym_u8_SQUOTE] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_L_DQUOTE] = ACTIONS(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, [189] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [190] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [191] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [192] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [193] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [194] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [195] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, [196] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [aux_sym_preproc_else_token1] = ACTIONS(1334), - [aux_sym_preproc_elif_token1] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [197] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, [198] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token2] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, [199] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(1177), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, [200] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [201] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [aux_sym_preproc_else_token1] = ACTIONS(1346), - [aux_sym_preproc_elif_token1] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [202] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [203] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [aux_sym_preproc_else_token1] = ACTIONS(1422), - [aux_sym_preproc_elif_token1] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, [204] = { - [sym_else_clause] = STATE(305), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token2] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1217), + [anon_sym_u_SQUOTE] = ACTIONS(1217), + [anon_sym_U_SQUOTE] = ACTIONS(1217), + [anon_sym_u8_SQUOTE] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_L_DQUOTE] = ACTIONS(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, [205] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [aux_sym_preproc_else_token1] = ACTIONS(1476), - [aux_sym_preproc_elif_token1] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [206] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [aux_sym_preproc_else_token1] = ACTIONS(1500), - [aux_sym_preproc_elif_token1] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, [207] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [aux_sym_preproc_else_token1] = ACTIONS(1426), - [aux_sym_preproc_elif_token1] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, [208] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [aux_sym_preproc_else_token1] = ACTIONS(1504), - [aux_sym_preproc_elif_token1] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token2] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, [209] = { - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [aux_sym_preproc_else_token1] = ACTIONS(1442), - [aux_sym_preproc_elif_token1] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym___try] = ACTIONS(1442), - [anon_sym___leave] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [210] = { - [sym_else_clause] = STATE(295), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [211] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [aux_sym_preproc_else_token1] = ACTIONS(1484), - [aux_sym_preproc_elif_token1] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, [212] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [aux_sym_preproc_else_token1] = ACTIONS(1434), - [aux_sym_preproc_elif_token1] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym___try] = ACTIONS(1434), - [anon_sym___leave] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [213] = { - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token2] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [aux_sym_preproc_else_token1] = ACTIONS(1454), - [aux_sym_preproc_elif_token1] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym___try] = ACTIONS(1454), - [anon_sym___leave] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [214] = { - [sym_identifier] = ACTIONS(1450), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token2] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym___extension__] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), - [anon_sym___declspec] = ACTIONS(1450), - [anon_sym___cdecl] = ACTIONS(1450), - [anon_sym___clrcall] = ACTIONS(1450), - [anon_sym___stdcall] = ACTIONS(1450), - [anon_sym___fastcall] = ACTIONS(1450), - [anon_sym___thiscall] = ACTIONS(1450), - [anon_sym___vectorcall] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___inline] = ACTIONS(1450), - [anon_sym___inline__] = ACTIONS(1450), - [anon_sym___forceinline] = ACTIONS(1450), - [anon_sym_thread_local] = ACTIONS(1450), - [anon_sym___thread] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_constexpr] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym___restrict__] = ACTIONS(1450), - [anon_sym__Atomic] = ACTIONS(1450), - [anon_sym__Noreturn] = ACTIONS(1450), - [anon_sym_noreturn] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [anon_sym___try] = ACTIONS(1450), - [anon_sym___leave] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1450), - [anon_sym___alignof__] = ACTIONS(1450), - [anon_sym___alignof] = ACTIONS(1450), - [anon_sym__alignof] = ACTIONS(1450), - [anon_sym_alignof] = ACTIONS(1450), - [anon_sym__Alignof] = ACTIONS(1450), - [anon_sym_offsetof] = ACTIONS(1450), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1450), - [anon_sym___asm__] = ACTIONS(1450), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_L_SQUOTE] = ACTIONS(1452), - [anon_sym_u_SQUOTE] = ACTIONS(1452), - [anon_sym_U_SQUOTE] = ACTIONS(1452), - [anon_sym_u8_SQUOTE] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_L_DQUOTE] = ACTIONS(1452), - [anon_sym_u_DQUOTE] = ACTIONS(1452), - [anon_sym_U_DQUOTE] = ACTIONS(1452), - [anon_sym_u8_DQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [anon_sym_NULL] = ACTIONS(1450), - [anon_sym_nullptr] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, [215] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [aux_sym_preproc_else_token1] = ACTIONS(1418), - [aux_sym_preproc_elif_token1] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [217] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [aux_sym_preproc_else_token1] = ACTIONS(1472), - [aux_sym_preproc_elif_token1] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token2] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, [218] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1225), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, [219] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [aux_sym_preproc_else_token1] = ACTIONS(1468), - [aux_sym_preproc_elif_token1] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, [220] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [aux_sym_preproc_else_token1] = ACTIONS(1446), - [aux_sym_preproc_elif_token1] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token2] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [aux_sym_preproc_else_token1] = ACTIONS(1488), - [aux_sym_preproc_elif_token1] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, [222] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [aux_sym_preproc_else_token1] = ACTIONS(1492), - [aux_sym_preproc_elif_token1] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token2] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, [223] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, [224] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [aux_sym_preproc_else_token1] = ACTIONS(1496), - [aux_sym_preproc_elif_token1] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token2] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, [225] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [aux_sym_preproc_else_token1] = ACTIONS(1480), - [aux_sym_preproc_elif_token1] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [226] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token2] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, [227] = { - [sym_identifier] = ACTIONS(1458), - [aux_sym_preproc_include_token1] = ACTIONS(1458), - [aux_sym_preproc_def_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token2] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), - [aux_sym_preproc_else_token1] = ACTIONS(1458), - [aux_sym_preproc_elif_token1] = ACTIONS(1458), - [sym_preproc_directive] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym___extension__] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym___attribute__] = ACTIONS(1458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), - [anon_sym___declspec] = ACTIONS(1458), - [anon_sym___cdecl] = ACTIONS(1458), - [anon_sym___clrcall] = ACTIONS(1458), - [anon_sym___stdcall] = ACTIONS(1458), - [anon_sym___fastcall] = ACTIONS(1458), - [anon_sym___thiscall] = ACTIONS(1458), - [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_auto] = ACTIONS(1458), - [anon_sym_register] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym___inline] = ACTIONS(1458), - [anon_sym___inline__] = ACTIONS(1458), - [anon_sym___forceinline] = ACTIONS(1458), - [anon_sym_thread_local] = ACTIONS(1458), - [anon_sym___thread] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_constexpr] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_restrict] = ACTIONS(1458), - [anon_sym___restrict__] = ACTIONS(1458), - [anon_sym__Atomic] = ACTIONS(1458), - [anon_sym__Noreturn] = ACTIONS(1458), - [anon_sym_noreturn] = ACTIONS(1458), - [sym_primitive_type] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_goto] = ACTIONS(1458), - [anon_sym___try] = ACTIONS(1458), - [anon_sym___leave] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym___alignof__] = ACTIONS(1458), - [anon_sym___alignof] = ACTIONS(1458), - [anon_sym__alignof] = ACTIONS(1458), - [anon_sym_alignof] = ACTIONS(1458), - [anon_sym__Alignof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1458), - [anon_sym___asm__] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(1460), - [anon_sym_L_SQUOTE] = ACTIONS(1460), - [anon_sym_u_SQUOTE] = ACTIONS(1460), - [anon_sym_U_SQUOTE] = ACTIONS(1460), - [anon_sym_u8_SQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_L_DQUOTE] = ACTIONS(1460), - [anon_sym_u_DQUOTE] = ACTIONS(1460), - [anon_sym_U_DQUOTE] = ACTIONS(1460), - [anon_sym_u8_DQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [anon_sym_NULL] = ACTIONS(1458), - [anon_sym_nullptr] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token2] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [228] = { - [sym_else_clause] = STATE(302), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1129), + [aux_sym_preproc_include_token1] = ACTIONS(1129), + [aux_sym_preproc_def_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token2] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1129), + [sym_preproc_directive] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1127), + [anon_sym___declspec] = ACTIONS(1129), + [anon_sym___cdecl] = ACTIONS(1129), + [anon_sym___clrcall] = ACTIONS(1129), + [anon_sym___stdcall] = ACTIONS(1129), + [anon_sym___fastcall] = ACTIONS(1129), + [anon_sym___thiscall] = ACTIONS(1129), + [anon_sym___vectorcall] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym___inline] = ACTIONS(1129), + [anon_sym___inline__] = ACTIONS(1129), + [anon_sym___forceinline] = ACTIONS(1129), + [anon_sym_thread_local] = ACTIONS(1129), + [anon_sym___thread] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_constexpr] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym___restrict__] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym__Noreturn] = ACTIONS(1129), + [anon_sym_noreturn] = ACTIONS(1129), + [anon_sym_alignas] = ACTIONS(1129), + [anon_sym__Alignas] = ACTIONS(1129), + [sym_primitive_type] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_switch] = ACTIONS(1129), + [anon_sym_case] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_goto] = ACTIONS(1129), + [anon_sym___try] = ACTIONS(1129), + [anon_sym___leave] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1129), + [anon_sym___alignof__] = ACTIONS(1129), + [anon_sym___alignof] = ACTIONS(1129), + [anon_sym__alignof] = ACTIONS(1129), + [anon_sym_alignof] = ACTIONS(1129), + [anon_sym__Alignof] = ACTIONS(1129), + [anon_sym_offsetof] = ACTIONS(1129), + [anon_sym__Generic] = ACTIONS(1129), + [anon_sym_asm] = ACTIONS(1129), + [anon_sym___asm__] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_u_SQUOTE] = ACTIONS(1127), + [anon_sym_U_SQUOTE] = ACTIONS(1127), + [anon_sym_u8_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_u_DQUOTE] = ACTIONS(1127), + [anon_sym_U_DQUOTE] = ACTIONS(1127), + [anon_sym_u8_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [anon_sym_NULL] = ACTIONS(1129), + [anon_sym_nullptr] = ACTIONS(1129), [sym_comment] = ACTIONS(3), }, [229] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [aux_sym_preproc_else_token1] = ACTIONS(1430), - [aux_sym_preproc_elif_token1] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token2] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, [230] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [aux_sym_preproc_else_token1] = ACTIONS(1438), - [aux_sym_preproc_elif_token1] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym___try] = ACTIONS(1438), - [anon_sym___leave] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token2] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, [231] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token2] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, [232] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token2] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, [233] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token2] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token2] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1137), + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, [238] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [240] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token2] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, [241] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [242] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token2] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, [245] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token2] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [247] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token2] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [249] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1141), + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, [250] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token2] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [251] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token2] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token2] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1251), + [anon_sym___leave] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, [253] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1355), + [anon_sym___cdecl] = ACTIONS(1355), + [anon_sym___clrcall] = ACTIONS(1355), + [anon_sym___stdcall] = ACTIONS(1355), + [anon_sym___fastcall] = ACTIONS(1355), + [anon_sym___thiscall] = ACTIONS(1355), + [anon_sym___vectorcall] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1355), + [anon_sym_unsigned] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_auto] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1355), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_constexpr] = ACTIONS(1355), + [anon_sym_volatile] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1355), + [anon_sym___restrict__] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1355), + [anon_sym__Noreturn] = ACTIONS(1355), + [anon_sym_noreturn] = ACTIONS(1355), + [anon_sym_alignas] = ACTIONS(1355), + [anon_sym__Alignas] = ACTIONS(1355), + [sym_primitive_type] = ACTIONS(1355), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_goto] = ACTIONS(1355), + [anon_sym___try] = ACTIONS(1355), + [anon_sym___leave] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1355), + [anon_sym___alignof__] = ACTIONS(1355), + [anon_sym___alignof] = ACTIONS(1355), + [anon_sym__alignof] = ACTIONS(1355), + [anon_sym_alignof] = ACTIONS(1355), + [anon_sym__Alignof] = ACTIONS(1355), + [anon_sym_offsetof] = ACTIONS(1355), + [anon_sym__Generic] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym___asm__] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1355), + [sym_false] = ACTIONS(1355), + [anon_sym_NULL] = ACTIONS(1355), + [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, [254] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, [255] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, [256] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, [257] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym___try] = ACTIONS(1339), + [anon_sym___leave] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, [258] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [259] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token2] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, [262] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token2] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, [263] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym___try] = ACTIONS(1323), + [anon_sym___leave] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, [264] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token2] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [265] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [266] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token2] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, [267] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, [268] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token2] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, [269] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token2] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym___try] = ACTIONS(1339), + [anon_sym___leave] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, [270] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token2] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, [271] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token2] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1355), + [anon_sym___cdecl] = ACTIONS(1355), + [anon_sym___clrcall] = ACTIONS(1355), + [anon_sym___stdcall] = ACTIONS(1355), + [anon_sym___fastcall] = ACTIONS(1355), + [anon_sym___thiscall] = ACTIONS(1355), + [anon_sym___vectorcall] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1355), + [anon_sym_unsigned] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_auto] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1355), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_constexpr] = ACTIONS(1355), + [anon_sym_volatile] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1355), + [anon_sym___restrict__] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1355), + [anon_sym__Noreturn] = ACTIONS(1355), + [anon_sym_noreturn] = ACTIONS(1355), + [anon_sym_alignas] = ACTIONS(1355), + [anon_sym__Alignas] = ACTIONS(1355), + [sym_primitive_type] = ACTIONS(1355), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_goto] = ACTIONS(1355), + [anon_sym___try] = ACTIONS(1355), + [anon_sym___leave] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1355), + [anon_sym___alignof__] = ACTIONS(1355), + [anon_sym___alignof] = ACTIONS(1355), + [anon_sym__alignof] = ACTIONS(1355), + [anon_sym_alignof] = ACTIONS(1355), + [anon_sym__Alignof] = ACTIONS(1355), + [anon_sym_offsetof] = ACTIONS(1355), + [anon_sym__Generic] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym___asm__] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1355), + [sym_false] = ACTIONS(1355), + [anon_sym_NULL] = ACTIONS(1355), + [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, [272] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token2] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym___try] = ACTIONS(1299), + [anon_sym___leave] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, [273] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, [274] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym___try] = ACTIONS(1279), + [anon_sym___leave] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, [275] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym___try] = ACTIONS(1271), + [anon_sym___leave] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym___try] = ACTIONS(1267), + [anon_sym___leave] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token2] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token2] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [279] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, [280] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token2] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym___try] = ACTIONS(1343), + [anon_sym___leave] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, [281] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token2] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym___try] = ACTIONS(1263), + [anon_sym___leave] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, [283] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token2] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, [284] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token2] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym___try] = ACTIONS(1263), + [anon_sym___leave] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, [285] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym___try] = ACTIONS(1299), + [anon_sym___leave] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, [286] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token2] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), [sym_comment] = ACTIONS(3), }, [287] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [288] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token2] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), [sym_comment] = ACTIONS(3), }, [291] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, [292] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token2] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym___try] = ACTIONS(1323), + [anon_sym___leave] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, [293] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1251), + [anon_sym___leave] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, [296] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token2] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [299] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token2] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym___try] = ACTIONS(1271), + [anon_sym___leave] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, [300] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym___try] = ACTIONS(1267), + [anon_sym___leave] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, [301] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym___try] = ACTIONS(1343), + [anon_sym___leave] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, [302] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [303] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token2] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym___try] = ACTIONS(1279), + [anon_sym___leave] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, [304] = { - [sym__expression] = STATE(835), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_COLON] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [305] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token2] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, [308] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, [309] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [310] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [sym_expression] = STATE(680), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(668), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(668), + [sym_call_expression] = STATE(668), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(668), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(668), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_STAR_EQ] = ACTIONS(1377), + [anon_sym_SLASH_EQ] = ACTIONS(1377), + [anon_sym_PERCENT_EQ] = ACTIONS(1377), + [anon_sym_PLUS_EQ] = ACTIONS(1377), + [anon_sym_DASH_EQ] = ACTIONS(1377), + [anon_sym_LT_LT_EQ] = ACTIONS(1377), + [anon_sym_GT_GT_EQ] = ACTIONS(1377), + [anon_sym_AMP_EQ] = ACTIONS(1377), + [anon_sym_CARET_EQ] = ACTIONS(1377), + [anon_sym_PIPE_EQ] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1387), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [anon_sym_COMMA] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, [312] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [sym_expression] = STATE(680), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(668), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(668), + [sym_call_expression] = STATE(668), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(668), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(668), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(679), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1377), + [aux_sym_preproc_if_token2] = ACTIONS(1377), + [aux_sym_preproc_else_token1] = ACTIONS(1377), + [aux_sym_preproc_elif_token1] = ACTIONS(1383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_STAR_EQ] = ACTIONS(1377), + [anon_sym_SLASH_EQ] = ACTIONS(1377), + [anon_sym_PERCENT_EQ] = ACTIONS(1377), + [anon_sym_PLUS_EQ] = ACTIONS(1377), + [anon_sym_DASH_EQ] = ACTIONS(1377), + [anon_sym_LT_LT_EQ] = ACTIONS(1377), + [anon_sym_GT_GT_EQ] = ACTIONS(1377), + [anon_sym_AMP_EQ] = ACTIONS(1377), + [anon_sym_CARET_EQ] = ACTIONS(1377), + [anon_sym_PIPE_EQ] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1393), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [313] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, [314] = { - [sym__expression] = STATE(835), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), + [sym_attribute_declaration] = STATE(330), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), [sym_subscript_expression] = STATE(820), [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1522), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1532), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(210), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [316] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(83), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [317] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(318), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(236), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [318] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(318), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(236), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(1409), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1463), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), [sym_comment] = ACTIONS(3), }, [319] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(81), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [320] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(240), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [321] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(250), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [322] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(143), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [323] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(195), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [324] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(400), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [325] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(1848), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [326] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(210), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [327] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(195), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [328] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(1962), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [329] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(208), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [330] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(330), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1547), + [anon_sym___leave] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), [sym_comment] = ACTIONS(3), }, [331] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(176), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [332] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(1949), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [333] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(223), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [334] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(213), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [335] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(145), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [336] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(212), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [337] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [338] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - }, - [339] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - }, + [sym_attribute_declaration] = STATE(337), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(96), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_goto] = ACTIONS(1594), + [anon_sym___try] = ACTIONS(1597), + [anon_sym___leave] = ACTIONS(1600), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1603), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1624), + [anon_sym___leave] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(238), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(238), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [341] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(144), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_attribute_declaration] = STATE(342), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(158), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1636), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1642), + [anon_sym_default] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_goto] = ACTIONS(1666), + [anon_sym___try] = ACTIONS(1669), + [anon_sym___leave] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), [sym_comment] = ACTIONS(3), }, [343] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(249), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [344] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(93), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(249), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [346] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(180), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(109), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [349] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [sym_attribute_declaration] = STATE(337), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(96), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [350] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(75), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [351] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(1970), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [352] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [sym_attribute_declaration] = STATE(342), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(158), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [353] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1367), + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), [sym_comment] = ACTIONS(3), }, [354] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, [355] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [356] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, [357] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, [358] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1363), + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, [359] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), + [sym_preproc_directive] = ACTIONS(1674), + [anon_sym_LPAREN2] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym___extension__] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1674), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym___attribute__] = ACTIONS(1674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1674), + [anon_sym___cdecl] = ACTIONS(1674), + [anon_sym___clrcall] = ACTIONS(1674), + [anon_sym___stdcall] = ACTIONS(1674), + [anon_sym___fastcall] = ACTIONS(1674), + [anon_sym___thiscall] = ACTIONS(1674), + [anon_sym___vectorcall] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1674), + [anon_sym_unsigned] = ACTIONS(1674), + [anon_sym_long] = ACTIONS(1674), + [anon_sym_short] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_auto] = ACTIONS(1674), + [anon_sym_register] = ACTIONS(1674), + [anon_sym_inline] = ACTIONS(1674), + [anon_sym___inline] = ACTIONS(1674), + [anon_sym___inline__] = ACTIONS(1674), + [anon_sym___forceinline] = ACTIONS(1674), + [anon_sym_thread_local] = ACTIONS(1674), + [anon_sym___thread] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_constexpr] = ACTIONS(1674), + [anon_sym_volatile] = ACTIONS(1674), + [anon_sym_restrict] = ACTIONS(1674), + [anon_sym___restrict__] = ACTIONS(1674), + [anon_sym__Atomic] = ACTIONS(1674), + [anon_sym__Noreturn] = ACTIONS(1674), + [anon_sym_noreturn] = ACTIONS(1674), + [anon_sym_alignas] = ACTIONS(1674), + [anon_sym__Alignas] = ACTIONS(1674), + [sym_primitive_type] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [anon_sym_struct] = ACTIONS(1674), + [anon_sym_union] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_goto] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_sizeof] = ACTIONS(1674), + [anon_sym___alignof__] = ACTIONS(1674), + [anon_sym___alignof] = ACTIONS(1674), + [anon_sym__alignof] = ACTIONS(1674), + [anon_sym_alignof] = ACTIONS(1674), + [anon_sym__Alignof] = ACTIONS(1674), + [anon_sym_offsetof] = ACTIONS(1674), + [anon_sym__Generic] = ACTIONS(1674), + [anon_sym_asm] = ACTIONS(1674), + [anon_sym___asm__] = ACTIONS(1674), + [sym_number_literal] = ACTIONS(1672), + [anon_sym_L_SQUOTE] = ACTIONS(1672), + [anon_sym_u_SQUOTE] = ACTIONS(1672), + [anon_sym_U_SQUOTE] = ACTIONS(1672), + [anon_sym_u8_SQUOTE] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_L_DQUOTE] = ACTIONS(1672), + [anon_sym_u_DQUOTE] = ACTIONS(1672), + [anon_sym_U_DQUOTE] = ACTIONS(1672), + [anon_sym_u8_DQUOTE] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [anon_sym_NULL] = ACTIONS(1674), + [anon_sym_nullptr] = ACTIONS(1674), [sym_comment] = ACTIONS(3), }, [360] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, [361] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [362] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, [363] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym___try] = ACTIONS(1434), - [anon_sym___leave] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_identifier] = ACTIONS(1678), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), + [sym_preproc_directive] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym___extension__] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym___attribute__] = ACTIONS(1678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1678), + [anon_sym___cdecl] = ACTIONS(1678), + [anon_sym___clrcall] = ACTIONS(1678), + [anon_sym___stdcall] = ACTIONS(1678), + [anon_sym___fastcall] = ACTIONS(1678), + [anon_sym___thiscall] = ACTIONS(1678), + [anon_sym___vectorcall] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_auto] = ACTIONS(1678), + [anon_sym_register] = ACTIONS(1678), + [anon_sym_inline] = ACTIONS(1678), + [anon_sym___inline] = ACTIONS(1678), + [anon_sym___inline__] = ACTIONS(1678), + [anon_sym___forceinline] = ACTIONS(1678), + [anon_sym_thread_local] = ACTIONS(1678), + [anon_sym___thread] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_constexpr] = ACTIONS(1678), + [anon_sym_volatile] = ACTIONS(1678), + [anon_sym_restrict] = ACTIONS(1678), + [anon_sym___restrict__] = ACTIONS(1678), + [anon_sym__Atomic] = ACTIONS(1678), + [anon_sym__Noreturn] = ACTIONS(1678), + [anon_sym_noreturn] = ACTIONS(1678), + [anon_sym_alignas] = ACTIONS(1678), + [anon_sym__Alignas] = ACTIONS(1678), + [sym_primitive_type] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(1678), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_goto] = ACTIONS(1678), + [anon_sym_DASH_DASH] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [anon_sym___alignof__] = ACTIONS(1678), + [anon_sym___alignof] = ACTIONS(1678), + [anon_sym__alignof] = ACTIONS(1678), + [anon_sym_alignof] = ACTIONS(1678), + [anon_sym__Alignof] = ACTIONS(1678), + [anon_sym_offsetof] = ACTIONS(1678), + [anon_sym__Generic] = ACTIONS(1678), + [anon_sym_asm] = ACTIONS(1678), + [anon_sym___asm__] = ACTIONS(1678), + [sym_number_literal] = ACTIONS(1676), + [anon_sym_L_SQUOTE] = ACTIONS(1676), + [anon_sym_u_SQUOTE] = ACTIONS(1676), + [anon_sym_U_SQUOTE] = ACTIONS(1676), + [anon_sym_u8_SQUOTE] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_L_DQUOTE] = ACTIONS(1676), + [anon_sym_u_DQUOTE] = ACTIONS(1676), + [anon_sym_U_DQUOTE] = ACTIONS(1676), + [anon_sym_u8_DQUOTE] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym_true] = ACTIONS(1678), + [sym_false] = ACTIONS(1678), + [anon_sym_NULL] = ACTIONS(1678), + [anon_sym_nullptr] = ACTIONS(1678), [sym_comment] = ACTIONS(3), }, [364] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, [365] = { - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token2] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym___try] = ACTIONS(1454), - [anon_sym___leave] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1305), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [366] = { - [sym_identifier] = ACTIONS(1450), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token2] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym___extension__] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), - [anon_sym___declspec] = ACTIONS(1450), - [anon_sym___cdecl] = ACTIONS(1450), - [anon_sym___clrcall] = ACTIONS(1450), - [anon_sym___stdcall] = ACTIONS(1450), - [anon_sym___fastcall] = ACTIONS(1450), - [anon_sym___thiscall] = ACTIONS(1450), - [anon_sym___vectorcall] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___inline] = ACTIONS(1450), - [anon_sym___inline__] = ACTIONS(1450), - [anon_sym___forceinline] = ACTIONS(1450), - [anon_sym_thread_local] = ACTIONS(1450), - [anon_sym___thread] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_constexpr] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym___restrict__] = ACTIONS(1450), - [anon_sym__Atomic] = ACTIONS(1450), - [anon_sym__Noreturn] = ACTIONS(1450), - [anon_sym_noreturn] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [anon_sym___try] = ACTIONS(1450), - [anon_sym___leave] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1450), - [anon_sym___alignof__] = ACTIONS(1450), - [anon_sym___alignof] = ACTIONS(1450), - [anon_sym__alignof] = ACTIONS(1450), - [anon_sym_alignof] = ACTIONS(1450), - [anon_sym__Alignof] = ACTIONS(1450), - [anon_sym_offsetof] = ACTIONS(1450), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1450), - [anon_sym___asm__] = ACTIONS(1450), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_L_SQUOTE] = ACTIONS(1452), - [anon_sym_u_SQUOTE] = ACTIONS(1452), - [anon_sym_U_SQUOTE] = ACTIONS(1452), - [anon_sym_u8_SQUOTE] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_L_DQUOTE] = ACTIONS(1452), - [anon_sym_u_DQUOTE] = ACTIONS(1452), - [anon_sym_U_DQUOTE] = ACTIONS(1452), - [anon_sym_u8_DQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [anon_sym_NULL] = ACTIONS(1450), - [anon_sym_nullptr] = ACTIONS(1450), + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, [367] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, [368] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, [369] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, [370] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [371] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, [372] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, [373] = { - [sym_identifier] = ACTIONS(1458), - [aux_sym_preproc_include_token1] = ACTIONS(1458), - [aux_sym_preproc_def_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token2] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), - [sym_preproc_directive] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym___extension__] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym___attribute__] = ACTIONS(1458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), - [anon_sym___declspec] = ACTIONS(1458), - [anon_sym___cdecl] = ACTIONS(1458), - [anon_sym___clrcall] = ACTIONS(1458), - [anon_sym___stdcall] = ACTIONS(1458), - [anon_sym___fastcall] = ACTIONS(1458), - [anon_sym___thiscall] = ACTIONS(1458), - [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_auto] = ACTIONS(1458), - [anon_sym_register] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym___inline] = ACTIONS(1458), - [anon_sym___inline__] = ACTIONS(1458), - [anon_sym___forceinline] = ACTIONS(1458), - [anon_sym_thread_local] = ACTIONS(1458), - [anon_sym___thread] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_constexpr] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_restrict] = ACTIONS(1458), - [anon_sym___restrict__] = ACTIONS(1458), - [anon_sym__Atomic] = ACTIONS(1458), - [anon_sym__Noreturn] = ACTIONS(1458), - [anon_sym_noreturn] = ACTIONS(1458), - [sym_primitive_type] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_goto] = ACTIONS(1458), - [anon_sym___try] = ACTIONS(1458), - [anon_sym___leave] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym___alignof__] = ACTIONS(1458), - [anon_sym___alignof] = ACTIONS(1458), - [anon_sym__alignof] = ACTIONS(1458), - [anon_sym_alignof] = ACTIONS(1458), - [anon_sym__Alignof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1458), - [anon_sym___asm__] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(1460), - [anon_sym_L_SQUOTE] = ACTIONS(1460), - [anon_sym_u_SQUOTE] = ACTIONS(1460), - [anon_sym_U_SQUOTE] = ACTIONS(1460), - [anon_sym_u8_SQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_L_DQUOTE] = ACTIONS(1460), - [anon_sym_u_DQUOTE] = ACTIONS(1460), - [anon_sym_U_DQUOTE] = ACTIONS(1460), - [anon_sym_u8_DQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [anon_sym_NULL] = ACTIONS(1458), - [anon_sym_nullptr] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [374] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym___try] = ACTIONS(1438), - [anon_sym___leave] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, [375] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, [376] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, [377] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, [378] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [379] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, [380] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym___try] = ACTIONS(1438), - [anon_sym___leave] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1683), + [aux_sym_preproc_include_token1] = ACTIONS(1683), + [aux_sym_preproc_def_token1] = ACTIONS(1683), + [aux_sym_preproc_if_token1] = ACTIONS(1683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1683), + [sym_preproc_directive] = ACTIONS(1683), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym___extension__] = ACTIONS(1683), + [anon_sym_typedef] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym___attribute__] = ACTIONS(1683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1680), + [anon_sym___declspec] = ACTIONS(1683), + [anon_sym___cdecl] = ACTIONS(1683), + [anon_sym___clrcall] = ACTIONS(1683), + [anon_sym___stdcall] = ACTIONS(1683), + [anon_sym___fastcall] = ACTIONS(1683), + [anon_sym___thiscall] = ACTIONS(1683), + [anon_sym___vectorcall] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_signed] = ACTIONS(1683), + [anon_sym_unsigned] = ACTIONS(1683), + [anon_sym_long] = ACTIONS(1683), + [anon_sym_short] = ACTIONS(1683), + [anon_sym_static] = ACTIONS(1683), + [anon_sym_auto] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1683), + [anon_sym_inline] = ACTIONS(1683), + [anon_sym___inline] = ACTIONS(1683), + [anon_sym___inline__] = ACTIONS(1683), + [anon_sym___forceinline] = ACTIONS(1683), + [anon_sym_thread_local] = ACTIONS(1683), + [anon_sym___thread] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_constexpr] = ACTIONS(1683), + [anon_sym_volatile] = ACTIONS(1683), + [anon_sym_restrict] = ACTIONS(1683), + [anon_sym___restrict__] = ACTIONS(1683), + [anon_sym__Atomic] = ACTIONS(1683), + [anon_sym__Noreturn] = ACTIONS(1683), + [anon_sym_noreturn] = ACTIONS(1683), + [anon_sym_alignas] = ACTIONS(1683), + [anon_sym__Alignas] = ACTIONS(1683), + [sym_primitive_type] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(1683), + [anon_sym_union] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_switch] = ACTIONS(1683), + [anon_sym_case] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_goto] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_sizeof] = ACTIONS(1683), + [anon_sym___alignof__] = ACTIONS(1683), + [anon_sym___alignof] = ACTIONS(1683), + [anon_sym__alignof] = ACTIONS(1683), + [anon_sym_alignof] = ACTIONS(1683), + [anon_sym__Alignof] = ACTIONS(1683), + [anon_sym_offsetof] = ACTIONS(1683), + [anon_sym__Generic] = ACTIONS(1683), + [anon_sym_asm] = ACTIONS(1683), + [anon_sym___asm__] = ACTIONS(1683), + [sym_number_literal] = ACTIONS(1680), + [anon_sym_L_SQUOTE] = ACTIONS(1680), + [anon_sym_u_SQUOTE] = ACTIONS(1680), + [anon_sym_U_SQUOTE] = ACTIONS(1680), + [anon_sym_u8_SQUOTE] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_L_DQUOTE] = ACTIONS(1680), + [anon_sym_u_DQUOTE] = ACTIONS(1680), + [anon_sym_U_DQUOTE] = ACTIONS(1680), + [anon_sym_u8_DQUOTE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [anon_sym_NULL] = ACTIONS(1683), + [anon_sym_nullptr] = ACTIONS(1683), [sym_comment] = ACTIONS(3), }, [381] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [sym_expression] = STATE(838), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(668), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(668), + [sym_call_expression] = STATE(668), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(668), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(668), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_STAR_EQ] = ACTIONS(1377), + [anon_sym_SLASH_EQ] = ACTIONS(1377), + [anon_sym_PERCENT_EQ] = ACTIONS(1377), + [anon_sym_PLUS_EQ] = ACTIONS(1377), + [anon_sym_DASH_EQ] = ACTIONS(1377), + [anon_sym_LT_LT_EQ] = ACTIONS(1377), + [anon_sym_GT_GT_EQ] = ACTIONS(1377), + [anon_sym_AMP_EQ] = ACTIONS(1377), + [anon_sym_CARET_EQ] = ACTIONS(1377), + [anon_sym_PIPE_EQ] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1690), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [382] = { - [sym_identifier] = ACTIONS(1458), - [aux_sym_preproc_include_token1] = ACTIONS(1458), - [aux_sym_preproc_def_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), - [sym_preproc_directive] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym___extension__] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym___attribute__] = ACTIONS(1458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), - [anon_sym___declspec] = ACTIONS(1458), - [anon_sym___cdecl] = ACTIONS(1458), - [anon_sym___clrcall] = ACTIONS(1458), - [anon_sym___stdcall] = ACTIONS(1458), - [anon_sym___fastcall] = ACTIONS(1458), - [anon_sym___thiscall] = ACTIONS(1458), - [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_auto] = ACTIONS(1458), - [anon_sym_register] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym___inline] = ACTIONS(1458), - [anon_sym___inline__] = ACTIONS(1458), - [anon_sym___forceinline] = ACTIONS(1458), - [anon_sym_thread_local] = ACTIONS(1458), - [anon_sym___thread] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_constexpr] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_restrict] = ACTIONS(1458), - [anon_sym___restrict__] = ACTIONS(1458), - [anon_sym__Atomic] = ACTIONS(1458), - [anon_sym__Noreturn] = ACTIONS(1458), - [anon_sym_noreturn] = ACTIONS(1458), - [sym_primitive_type] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_goto] = ACTIONS(1458), - [anon_sym___try] = ACTIONS(1458), - [anon_sym___leave] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym___alignof__] = ACTIONS(1458), - [anon_sym___alignof] = ACTIONS(1458), - [anon_sym__alignof] = ACTIONS(1458), - [anon_sym_alignof] = ACTIONS(1458), - [anon_sym__Alignof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1458), - [anon_sym___asm__] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(1460), - [anon_sym_L_SQUOTE] = ACTIONS(1460), - [anon_sym_u_SQUOTE] = ACTIONS(1460), - [anon_sym_U_SQUOTE] = ACTIONS(1460), - [anon_sym_u8_SQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_L_DQUOTE] = ACTIONS(1460), - [anon_sym_u_DQUOTE] = ACTIONS(1460), - [anon_sym_U_DQUOTE] = ACTIONS(1460), - [anon_sym_u8_DQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [anon_sym_NULL] = ACTIONS(1458), - [anon_sym_nullptr] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - }, - [383] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [384] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - }, - [385] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), - [sym_comment] = ACTIONS(3), - }, - [386] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - }, - [387] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [388] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - }, - [389] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - }, - [390] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - }, - [391] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - }, - [392] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - }, - [393] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - }, - [394] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - }, - [395] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [396] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym___try] = ACTIONS(1434), - [anon_sym___leave] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - }, - [397] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - }, - [398] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - }, - [399] = { - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym___try] = ACTIONS(1454), - [anon_sym___leave] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - }, - [400] = { - [sym_identifier] = ACTIONS(1450), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym___extension__] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), - [anon_sym___declspec] = ACTIONS(1450), - [anon_sym___cdecl] = ACTIONS(1450), - [anon_sym___clrcall] = ACTIONS(1450), - [anon_sym___stdcall] = ACTIONS(1450), - [anon_sym___fastcall] = ACTIONS(1450), - [anon_sym___thiscall] = ACTIONS(1450), - [anon_sym___vectorcall] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___inline] = ACTIONS(1450), - [anon_sym___inline__] = ACTIONS(1450), - [anon_sym___forceinline] = ACTIONS(1450), - [anon_sym_thread_local] = ACTIONS(1450), - [anon_sym___thread] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_constexpr] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym___restrict__] = ACTIONS(1450), - [anon_sym__Atomic] = ACTIONS(1450), - [anon_sym__Noreturn] = ACTIONS(1450), - [anon_sym_noreturn] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [anon_sym___try] = ACTIONS(1450), - [anon_sym___leave] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1450), - [anon_sym___alignof__] = ACTIONS(1450), - [anon_sym___alignof] = ACTIONS(1450), - [anon_sym__alignof] = ACTIONS(1450), - [anon_sym_alignof] = ACTIONS(1450), - [anon_sym__Alignof] = ACTIONS(1450), - [anon_sym_offsetof] = ACTIONS(1450), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1450), - [anon_sym___asm__] = ACTIONS(1450), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_L_SQUOTE] = ACTIONS(1452), - [anon_sym_u_SQUOTE] = ACTIONS(1452), - [anon_sym_U_SQUOTE] = ACTIONS(1452), - [anon_sym_u8_SQUOTE] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_L_DQUOTE] = ACTIONS(1452), - [anon_sym_u_DQUOTE] = ACTIONS(1452), - [anon_sym_U_DQUOTE] = ACTIONS(1452), - [anon_sym_u8_DQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [anon_sym_NULL] = ACTIONS(1450), - [anon_sym_nullptr] = ACTIONS(1450), - [sym_comment] = ACTIONS(3), - }, - [401] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - }, - [402] = { - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym___try] = ACTIONS(1442), - [anon_sym___leave] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - }, - [403] = { - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym___try] = ACTIONS(1442), - [anon_sym___leave] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - }, - [404] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - }, - [405] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - }, - [406] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(2160), - [sym_attributed_statement] = STATE(2160), - [sym_labeled_statement] = STATE(2160), - [sym_expression_statement] = STATE(2160), - [sym_if_statement] = STATE(2160), - [sym_switch_statement] = STATE(2160), - [sym_case_statement] = STATE(2160), - [sym_while_statement] = STATE(2160), - [sym_do_statement] = STATE(2160), - [sym_for_statement] = STATE(2160), - [sym_return_statement] = STATE(2160), - [sym_break_statement] = STATE(2160), - [sym_continue_statement] = STATE(2160), - [sym_goto_statement] = STATE(2160), - [sym_seh_try_statement] = STATE(2160), - [sym_seh_leave_statement] = STATE(2160), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1973), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61168,95 +54403,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [407] = { - [sym_attribute_declaration] = STATE(419), - [sym_compound_statement] = STATE(271), - [sym_attributed_statement] = STATE(271), - [sym_labeled_statement] = STATE(271), - [sym_expression_statement] = STATE(271), - [sym_if_statement] = STATE(271), - [sym_switch_statement] = STATE(271), - [sym_case_statement] = STATE(271), - [sym_while_statement] = STATE(271), - [sym_do_statement] = STATE(271), - [sym_for_statement] = STATE(271), - [sym_return_statement] = STATE(271), - [sym_break_statement] = STATE(271), - [sym_continue_statement] = STATE(271), - [sym_goto_statement] = STATE(271), - [sym_seh_try_statement] = STATE(271), - [sym_seh_leave_statement] = STATE(271), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1542), + [383] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1734), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61264,191 +54495,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [408] = { - [sym_attribute_declaration] = STATE(408), - [sym_compound_statement] = STATE(345), - [sym_attributed_statement] = STATE(345), - [sym_labeled_statement] = STATE(345), - [sym_expression_statement] = STATE(345), - [sym_if_statement] = STATE(345), - [sym_switch_statement] = STATE(345), - [sym_case_statement] = STATE(345), - [sym_while_statement] = STATE(345), - [sym_do_statement] = STATE(345), - [sym_for_statement] = STATE(345), - [sym_return_statement] = STATE(345), - [sym_break_statement] = STATE(345), - [sym_continue_statement] = STATE(345), - [sym_goto_statement] = STATE(345), - [sym_seh_try_statement] = STATE(345), - [sym_seh_leave_statement] = STATE(345), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(408), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_case] = ACTIONS(1574), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_goto] = ACTIONS(1598), - [anon_sym___try] = ACTIONS(1601), - [anon_sym___leave] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(503), - [sym_attributed_statement] = STATE(503), - [sym_labeled_statement] = STATE(503), - [sym_expression_statement] = STATE(503), - [sym_if_statement] = STATE(503), - [sym_switch_statement] = STATE(503), - [sym_case_statement] = STATE(503), - [sym_while_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_seh_try_statement] = STATE(503), - [sym_seh_leave_statement] = STATE(503), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [384] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1846), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61456,95 +54587,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_attribute_declaration] = STATE(451), - [sym_compound_statement] = STATE(170), - [sym_attributed_statement] = STATE(170), - [sym_labeled_statement] = STATE(170), - [sym_expression_statement] = STATE(170), - [sym_if_statement] = STATE(170), - [sym_switch_statement] = STATE(170), - [sym_case_statement] = STATE(170), - [sym_while_statement] = STATE(170), - [sym_do_statement] = STATE(170), - [sym_for_statement] = STATE(170), - [sym_return_statement] = STATE(170), - [sym_break_statement] = STATE(170), - [sym_continue_statement] = STATE(170), - [sym_goto_statement] = STATE(170), - [sym_seh_try_statement] = STATE(170), - [sym_seh_leave_statement] = STATE(170), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1640), + [385] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1871), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61552,191 +54679,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [411] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1482), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(316), - [sym_attributed_statement] = STATE(317), - [sym_labeled_statement] = STATE(318), - [sym_expression_statement] = STATE(320), - [sym_if_statement] = STATE(321), - [sym_switch_statement] = STATE(322), - [sym_case_statement] = STATE(325), - [sym_while_statement] = STATE(327), - [sym_do_statement] = STATE(328), - [sym_for_statement] = STATE(330), - [sym_return_statement] = STATE(331), - [sym_break_statement] = STATE(332), - [sym_continue_statement] = STATE(334), - [sym_goto_statement] = STATE(335), - [sym_seh_try_statement] = STATE(336), - [sym_seh_leave_statement] = STATE(337), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), + [386] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1801), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61744,95 +54771,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [413] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(282), - [sym_attributed_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_case_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_goto_statement] = STATE(282), - [sym_seh_try_statement] = STATE(282), - [sym_seh_leave_statement] = STATE(282), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [387] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1735), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61840,95 +54863,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(312), - [sym_attributed_statement] = STATE(312), - [sym_labeled_statement] = STATE(312), - [sym_expression_statement] = STATE(312), - [sym_if_statement] = STATE(312), - [sym_switch_statement] = STATE(312), - [sym_case_statement] = STATE(312), - [sym_while_statement] = STATE(312), - [sym_do_statement] = STATE(312), - [sym_for_statement] = STATE(312), - [sym_return_statement] = STATE(312), - [sym_break_statement] = STATE(312), - [sym_continue_statement] = STATE(312), - [sym_goto_statement] = STATE(312), - [sym_seh_try_statement] = STATE(312), - [sym_seh_leave_statement] = STATE(312), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), + [388] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1945), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61936,95 +54955,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(306), - [sym_attributed_statement] = STATE(306), - [sym_labeled_statement] = STATE(306), - [sym_expression_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_do_statement] = STATE(306), - [sym_for_statement] = STATE(306), - [sym_return_statement] = STATE(306), - [sym_break_statement] = STATE(306), - [sym_continue_statement] = STATE(306), - [sym_goto_statement] = STATE(306), - [sym_seh_try_statement] = STATE(306), - [sym_seh_leave_statement] = STATE(306), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [389] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1930), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62032,191 +55047,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [416] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_switch] = ACTIONS(1654), - [anon_sym_case] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_goto] = ACTIONS(1681), - [anon_sym___try] = ACTIONS(1684), - [anon_sym___leave] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(306), - [sym_attributed_statement] = STATE(306), - [sym_labeled_statement] = STATE(306), - [sym_expression_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_do_statement] = STATE(306), - [sym_for_statement] = STATE(306), - [sym_return_statement] = STATE(306), - [sym_break_statement] = STATE(306), - [sym_continue_statement] = STATE(306), - [sym_goto_statement] = STATE(306), - [sym_seh_try_statement] = STATE(306), - [sym_seh_leave_statement] = STATE(306), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1690), + [390] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1811), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62224,287 +55139,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_attribute_declaration] = STATE(418), - [sym_compound_statement] = STATE(345), - [sym_attributed_statement] = STATE(345), - [sym_labeled_statement] = STATE(345), - [sym_expression_statement] = STATE(345), - [sym_if_statement] = STATE(345), - [sym_switch_statement] = STATE(345), - [sym_case_statement] = STATE(345), - [sym_while_statement] = STATE(345), - [sym_do_statement] = STATE(345), - [sym_for_statement] = STATE(345), - [sym_return_statement] = STATE(345), - [sym_break_statement] = STATE(345), - [sym_continue_statement] = STATE(345), - [sym_goto_statement] = STATE(345), - [sym_seh_try_statement] = STATE(345), - [sym_seh_leave_statement] = STATE(345), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(418), + [391] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1764), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), [sym_identifier] = ACTIONS(1692), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_case] = ACTIONS(1698), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_goto] = ACTIONS(1598), - [anon_sym___try] = ACTIONS(1710), - [anon_sym___leave] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - }, - [419] = { - [sym_attribute_declaration] = STATE(419), - [sym_compound_statement] = STATE(271), - [sym_attributed_statement] = STATE(271), - [sym_labeled_statement] = STATE(271), - [sym_expression_statement] = STATE(271), - [sym_if_statement] = STATE(271), - [sym_switch_statement] = STATE(271), - [sym_case_statement] = STATE(271), - [sym_while_statement] = STATE(271), - [sym_do_statement] = STATE(271), - [sym_for_statement] = STATE(271), - [sym_return_statement] = STATE(271), - [sym_break_statement] = STATE(271), - [sym_continue_statement] = STATE(271), - [sym_goto_statement] = STATE(271), - [sym_seh_try_statement] = STATE(271), - [sym_seh_leave_statement] = STATE(271), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_case] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_goto] = ACTIONS(1752), - [anon_sym___try] = ACTIONS(1755), - [anon_sym___leave] = ACTIONS(1758), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - }, - [420] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(296), - [sym_attributed_statement] = STATE(296), - [sym_labeled_statement] = STATE(296), - [sym_expression_statement] = STATE(296), - [sym_if_statement] = STATE(296), - [sym_switch_statement] = STATE(296), - [sym_case_statement] = STATE(296), - [sym_while_statement] = STATE(296), - [sym_do_statement] = STATE(296), - [sym_for_statement] = STATE(296), - [sym_return_statement] = STATE(296), - [sym_break_statement] = STATE(296), - [sym_continue_statement] = STATE(296), - [sym_goto_statement] = STATE(296), - [sym_seh_try_statement] = STATE(296), - [sym_seh_leave_statement] = STATE(296), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62512,95 +55231,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [421] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1761), + [392] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1823), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62608,2975 +55323,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(285), - [sym_attributed_statement] = STATE(285), - [sym_labeled_statement] = STATE(285), - [sym_expression_statement] = STATE(285), - [sym_if_statement] = STATE(285), - [sym_switch_statement] = STATE(285), - [sym_case_statement] = STATE(285), - [sym_while_statement] = STATE(285), - [sym_do_statement] = STATE(285), - [sym_for_statement] = STATE(285), - [sym_return_statement] = STATE(285), - [sym_break_statement] = STATE(285), - [sym_continue_statement] = STATE(285), - [sym_goto_statement] = STATE(285), - [sym_seh_try_statement] = STATE(285), - [sym_seh_leave_statement] = STATE(285), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [423] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [424] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(96), - [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_case_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_seh_try_statement] = STATE(96), - [sym_seh_leave_statement] = STATE(96), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [425] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(282), - [sym_attributed_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_case_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_goto_statement] = STATE(282), - [sym_seh_try_statement] = STATE(282), - [sym_seh_leave_statement] = STATE(282), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [426] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym_seh_try_statement] = STATE(240), - [sym_seh_leave_statement] = STATE(240), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [427] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(277), - [sym_attributed_statement] = STATE(297), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(342), - [sym_switch_statement] = STATE(276), - [sym_case_statement] = STATE(260), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(243), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(238), - [sym_goto_statement] = STATE(237), - [sym_seh_try_statement] = STATE(235), - [sym_seh_leave_statement] = STATE(233), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [428] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(210), - [sym_attributed_statement] = STATE(210), - [sym_labeled_statement] = STATE(210), - [sym_expression_statement] = STATE(210), - [sym_if_statement] = STATE(210), - [sym_switch_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_do_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_return_statement] = STATE(210), - [sym_break_statement] = STATE(210), - [sym_continue_statement] = STATE(210), - [sym_goto_statement] = STATE(210), - [sym_seh_try_statement] = STATE(210), - [sym_seh_leave_statement] = STATE(210), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [429] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(2070), - [sym_attributed_statement] = STATE(2070), - [sym_labeled_statement] = STATE(2070), - [sym_expression_statement] = STATE(2070), - [sym_if_statement] = STATE(2070), - [sym_switch_statement] = STATE(2070), - [sym_case_statement] = STATE(2070), - [sym_while_statement] = STATE(2070), - [sym_do_statement] = STATE(2070), - [sym_for_statement] = STATE(2070), - [sym_return_statement] = STATE(2070), - [sym_break_statement] = STATE(2070), - [sym_continue_statement] = STATE(2070), - [sym_goto_statement] = STATE(2070), - [sym_seh_try_statement] = STATE(2070), - [sym_seh_leave_statement] = STATE(2070), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [430] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(228), - [sym_attributed_statement] = STATE(228), - [sym_labeled_statement] = STATE(228), - [sym_expression_statement] = STATE(228), - [sym_if_statement] = STATE(228), - [sym_switch_statement] = STATE(228), - [sym_case_statement] = STATE(228), - [sym_while_statement] = STATE(228), - [sym_do_statement] = STATE(228), - [sym_for_statement] = STATE(228), - [sym_return_statement] = STATE(228), - [sym_break_statement] = STATE(228), - [sym_continue_statement] = STATE(228), - [sym_goto_statement] = STATE(228), - [sym_seh_try_statement] = STATE(228), - [sym_seh_leave_statement] = STATE(228), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [431] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(288), - [sym_attributed_statement] = STATE(287), - [sym_labeled_statement] = STATE(284), - [sym_expression_statement] = STATE(283), - [sym_if_statement] = STATE(281), - [sym_switch_statement] = STATE(280), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(231), - [sym_do_statement] = STATE(270), - [sym_for_statement] = STATE(266), - [sym_return_statement] = STATE(264), - [sym_break_statement] = STATE(262), - [sym_continue_statement] = STATE(259), - [sym_goto_statement] = STATE(258), - [sym_seh_try_statement] = STATE(257), - [sym_seh_leave_statement] = STATE(256), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [432] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(326), - [sym_attributed_statement] = STATE(326), - [sym_labeled_statement] = STATE(326), - [sym_expression_statement] = STATE(326), - [sym_if_statement] = STATE(326), - [sym_switch_statement] = STATE(326), - [sym_case_statement] = STATE(326), - [sym_while_statement] = STATE(326), - [sym_do_statement] = STATE(326), - [sym_for_statement] = STATE(326), - [sym_return_statement] = STATE(326), - [sym_break_statement] = STATE(326), - [sym_continue_statement] = STATE(326), - [sym_goto_statement] = STATE(326), - [sym_seh_try_statement] = STATE(326), - [sym_seh_leave_statement] = STATE(326), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [433] = { - [sym_attribute_declaration] = STATE(424), - [sym_compound_statement] = STATE(122), - [sym_attributed_statement] = STATE(125), - [sym_labeled_statement] = STATE(126), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(128), - [sym_switch_statement] = STATE(129), - [sym_case_statement] = STATE(131), - [sym_while_statement] = STATE(132), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(120), - [sym_return_statement] = STATE(119), - [sym_break_statement] = STATE(116), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(111), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(109), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [434] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(179), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(183), - [sym_switch_statement] = STATE(189), - [sym_case_statement] = STATE(191), - [sym_while_statement] = STATE(192), - [sym_do_statement] = STATE(194), - [sym_for_statement] = STATE(197), - [sym_return_statement] = STATE(162), - [sym_break_statement] = STATE(173), - [sym_continue_statement] = STATE(177), - [sym_goto_statement] = STATE(185), - [sym_seh_try_statement] = STATE(176), - [sym_seh_leave_statement] = STATE(172), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [435] = { - [sym__expression] = STATE(921), - [sym__expression_not_binary] = STATE(928), - [sym_conditional_expression] = STATE(928), - [sym_assignment_expression] = STATE(928), - [sym_pointer_expression] = STATE(928), - [sym_unary_expression] = STATE(928), - [sym_binary_expression] = STATE(928), - [sym_update_expression] = STATE(928), - [sym_cast_expression] = STATE(928), - [sym_sizeof_expression] = STATE(928), - [sym_alignof_expression] = STATE(928), - [sym_offsetof_expression] = STATE(928), - [sym_generic_expression] = STATE(928), - [sym_subscript_expression] = STATE(928), - [sym_call_expression] = STATE(928), - [sym_gnu_asm_expression] = STATE(928), - [sym_field_expression] = STATE(928), - [sym_compound_literal_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(928), - [sym_initializer_list] = STATE(965), - [sym_char_literal] = STATE(928), - [sym_concatenated_string] = STATE(928), - [sym_string_literal] = STATE(849), - [sym_null] = STATE(928), - [sym_identifier] = ACTIONS(1522), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1771), - [anon_sym___alignof__] = ACTIONS(1773), - [anon_sym___alignof] = ACTIONS(1773), - [anon_sym__alignof] = ACTIONS(1773), - [anon_sym_alignof] = ACTIONS(1773), - [anon_sym__Alignof] = ACTIONS(1773), - [anon_sym_offsetof] = ACTIONS(1775), - [anon_sym__Generic] = ACTIONS(1777), - [anon_sym_asm] = ACTIONS(1779), - [anon_sym___asm__] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_L_SQUOTE] = ACTIONS(1783), - [anon_sym_u_SQUOTE] = ACTIONS(1783), - [anon_sym_U_SQUOTE] = ACTIONS(1783), - [anon_sym_u8_SQUOTE] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_L_DQUOTE] = ACTIONS(1785), - [anon_sym_u_DQUOTE] = ACTIONS(1785), - [anon_sym_U_DQUOTE] = ACTIONS(1785), - [anon_sym_u8_DQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [anon_sym_NULL] = ACTIONS(1789), - [anon_sym_nullptr] = ACTIONS(1789), - [sym_comment] = ACTIONS(3), - }, - [436] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(198), - [sym_attributed_statement] = STATE(198), - [sym_labeled_statement] = STATE(198), - [sym_expression_statement] = STATE(198), - [sym_if_statement] = STATE(198), - [sym_switch_statement] = STATE(198), - [sym_case_statement] = STATE(198), - [sym_while_statement] = STATE(198), - [sym_do_statement] = STATE(198), - [sym_for_statement] = STATE(198), - [sym_return_statement] = STATE(198), - [sym_break_statement] = STATE(198), - [sym_continue_statement] = STATE(198), - [sym_goto_statement] = STATE(198), - [sym_seh_try_statement] = STATE(198), - [sym_seh_leave_statement] = STATE(198), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [437] = { - [sym_attribute_declaration] = STATE(424), - [sym_compound_statement] = STATE(118), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_statement] = STATE(118), - [sym_case_statement] = STATE(118), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(118), - [sym_for_statement] = STATE(118), - [sym_return_statement] = STATE(118), - [sym_break_statement] = STATE(118), - [sym_continue_statement] = STATE(118), - [sym_goto_statement] = STATE(118), - [sym_seh_try_statement] = STATE(118), - [sym_seh_leave_statement] = STATE(118), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [438] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(277), - [sym_attributed_statement] = STATE(297), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(342), - [sym_switch_statement] = STATE(276), - [sym_case_statement] = STATE(260), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(243), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(238), - [sym_goto_statement] = STATE(237), - [sym_seh_try_statement] = STATE(235), - [sym_seh_leave_statement] = STATE(233), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [439] = { - [sym_attribute_declaration] = STATE(424), - [sym_compound_statement] = STATE(90), - [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_case_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_seh_try_statement] = STATE(90), - [sym_seh_leave_statement] = STATE(90), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [440] = { - [sym_attribute_declaration] = STATE(424), - [sym_compound_statement] = STATE(106), - [sym_attributed_statement] = STATE(106), - [sym_labeled_statement] = STATE(106), - [sym_expression_statement] = STATE(106), - [sym_if_statement] = STATE(106), - [sym_switch_statement] = STATE(106), - [sym_case_statement] = STATE(106), - [sym_while_statement] = STATE(106), - [sym_do_statement] = STATE(106), - [sym_for_statement] = STATE(106), - [sym_return_statement] = STATE(106), - [sym_break_statement] = STATE(106), - [sym_continue_statement] = STATE(106), - [sym_goto_statement] = STATE(106), - [sym_seh_try_statement] = STATE(106), - [sym_seh_leave_statement] = STATE(106), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [441] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(2168), - [sym_attributed_statement] = STATE(2168), - [sym_labeled_statement] = STATE(2168), - [sym_expression_statement] = STATE(2168), - [sym_if_statement] = STATE(2168), - [sym_switch_statement] = STATE(2168), - [sym_case_statement] = STATE(2168), - [sym_while_statement] = STATE(2168), - [sym_do_statement] = STATE(2168), - [sym_for_statement] = STATE(2168), - [sym_return_statement] = STATE(2168), - [sym_break_statement] = STATE(2168), - [sym_continue_statement] = STATE(2168), - [sym_goto_statement] = STATE(2168), - [sym_seh_try_statement] = STATE(2168), - [sym_seh_leave_statement] = STATE(2168), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [442] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(149), - [sym_attributed_statement] = STATE(149), - [sym_labeled_statement] = STATE(149), - [sym_expression_statement] = STATE(149), - [sym_if_statement] = STATE(149), - [sym_switch_statement] = STATE(149), - [sym_case_statement] = STATE(149), - [sym_while_statement] = STATE(149), - [sym_do_statement] = STATE(149), - [sym_for_statement] = STATE(149), - [sym_return_statement] = STATE(149), - [sym_break_statement] = STATE(149), - [sym_continue_statement] = STATE(149), - [sym_goto_statement] = STATE(149), - [sym_seh_try_statement] = STATE(149), - [sym_seh_leave_statement] = STATE(149), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [443] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(184), - [sym_attributed_statement] = STATE(184), - [sym_labeled_statement] = STATE(184), - [sym_expression_statement] = STATE(184), - [sym_if_statement] = STATE(184), - [sym_switch_statement] = STATE(184), - [sym_case_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_do_statement] = STATE(184), - [sym_for_statement] = STATE(184), - [sym_return_statement] = STATE(184), - [sym_break_statement] = STATE(184), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(184), - [sym_seh_try_statement] = STATE(184), - [sym_seh_leave_statement] = STATE(184), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [444] = { - [sym_attribute_declaration] = STATE(424), - [sym_compound_statement] = STATE(124), - [sym_attributed_statement] = STATE(124), - [sym_labeled_statement] = STATE(124), - [sym_expression_statement] = STATE(124), - [sym_if_statement] = STATE(124), - [sym_switch_statement] = STATE(124), - [sym_case_statement] = STATE(124), - [sym_while_statement] = STATE(124), - [sym_do_statement] = STATE(124), - [sym_for_statement] = STATE(124), - [sym_return_statement] = STATE(124), - [sym_break_statement] = STATE(124), - [sym_continue_statement] = STATE(124), - [sym_goto_statement] = STATE(124), - [sym_seh_try_statement] = STATE(124), - [sym_seh_leave_statement] = STATE(124), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [445] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [446] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(2152), - [sym_attributed_statement] = STATE(2152), - [sym_labeled_statement] = STATE(2152), - [sym_expression_statement] = STATE(2152), - [sym_if_statement] = STATE(2152), - [sym_switch_statement] = STATE(2152), - [sym_case_statement] = STATE(2152), - [sym_while_statement] = STATE(2152), - [sym_do_statement] = STATE(2152), - [sym_for_statement] = STATE(2152), - [sym_return_statement] = STATE(2152), - [sym_break_statement] = STATE(2152), - [sym_continue_statement] = STATE(2152), - [sym_goto_statement] = STATE(2152), - [sym_seh_try_statement] = STATE(2152), - [sym_seh_leave_statement] = STATE(2152), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [447] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(204), - [sym_attributed_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_switch_statement] = STATE(204), - [sym_case_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_goto_statement] = STATE(204), - [sym_seh_try_statement] = STATE(204), - [sym_seh_leave_statement] = STATE(204), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [448] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(96), - [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_case_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_seh_try_statement] = STATE(96), - [sym_seh_leave_statement] = STATE(96), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_goto] = ACTIONS(1830), - [anon_sym___try] = ACTIONS(1833), - [anon_sym___leave] = ACTIONS(1836), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - }, - [449] = { - [sym_attribute_declaration] = STATE(418), - [sym_compound_statement] = STATE(345), - [sym_attributed_statement] = STATE(345), - [sym_labeled_statement] = STATE(345), - [sym_expression_statement] = STATE(345), - [sym_if_statement] = STATE(345), - [sym_switch_statement] = STATE(345), - [sym_case_statement] = STATE(345), - [sym_while_statement] = STATE(345), - [sym_do_statement] = STATE(345), - [sym_for_statement] = STATE(345), - [sym_return_statement] = STATE(345), - [sym_break_statement] = STATE(345), - [sym_continue_statement] = STATE(345), - [sym_goto_statement] = STATE(345), - [sym_seh_try_statement] = STATE(345), - [sym_seh_leave_statement] = STATE(345), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(418), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [450] = { - [sym_attribute_declaration] = STATE(408), - [sym_compound_statement] = STATE(345), - [sym_attributed_statement] = STATE(345), - [sym_labeled_statement] = STATE(345), - [sym_expression_statement] = STATE(345), - [sym_if_statement] = STATE(345), - [sym_switch_statement] = STATE(345), - [sym_case_statement] = STATE(345), - [sym_while_statement] = STATE(345), - [sym_do_statement] = STATE(345), - [sym_for_statement] = STATE(345), - [sym_return_statement] = STATE(345), - [sym_break_statement] = STATE(345), - [sym_continue_statement] = STATE(345), - [sym_goto_statement] = STATE(345), - [sym_seh_try_statement] = STATE(345), - [sym_seh_leave_statement] = STATE(345), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(408), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [451] = { - [sym_attribute_declaration] = STATE(451), - [sym_compound_statement] = STATE(170), - [sym_attributed_statement] = STATE(170), - [sym_labeled_statement] = STATE(170), - [sym_expression_statement] = STATE(170), - [sym_if_statement] = STATE(170), - [sym_switch_statement] = STATE(170), - [sym_case_statement] = STATE(170), - [sym_while_statement] = STATE(170), - [sym_do_statement] = STATE(170), - [sym_for_statement] = STATE(170), - [sym_return_statement] = STATE(170), - [sym_break_statement] = STATE(170), - [sym_continue_statement] = STATE(170), - [sym_goto_statement] = STATE(170), - [sym_seh_try_statement] = STATE(170), - [sym_seh_leave_statement] = STATE(170), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_goto] = ACTIONS(1878), - [anon_sym___try] = ACTIONS(1881), - [anon_sym___leave] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - }, - [452] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(2107), - [sym_attributed_statement] = STATE(2107), - [sym_labeled_statement] = STATE(2107), - [sym_expression_statement] = STATE(2107), - [sym_if_statement] = STATE(2107), - [sym_switch_statement] = STATE(2107), - [sym_case_statement] = STATE(2107), - [sym_while_statement] = STATE(2107), - [sym_do_statement] = STATE(2107), - [sym_for_statement] = STATE(2107), - [sym_return_statement] = STATE(2107), - [sym_break_statement] = STATE(2107), - [sym_continue_statement] = STATE(2107), - [sym_goto_statement] = STATE(2107), - [sym_seh_try_statement] = STATE(2107), - [sym_seh_leave_statement] = STATE(2107), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [393] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1767), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65584,95 +55415,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym_seh_try_statement] = STATE(240), - [sym_seh_leave_statement] = STATE(240), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1690), + [394] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1051), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1889), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65680,95 +55506,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(188), - [sym_attributed_statement] = STATE(188), - [sym_labeled_statement] = STATE(188), - [sym_expression_statement] = STATE(188), - [sym_if_statement] = STATE(188), - [sym_switch_statement] = STATE(188), - [sym_case_statement] = STATE(188), - [sym_while_statement] = STATE(188), - [sym_do_statement] = STATE(188), - [sym_for_statement] = STATE(188), - [sym_return_statement] = STATE(188), - [sym_break_statement] = STATE(188), - [sym_continue_statement] = STATE(188), - [sym_goto_statement] = STATE(188), - [sym_seh_try_statement] = STATE(188), - [sym_seh_leave_statement] = STATE(188), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), + [395] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1060), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1916), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65776,2728 +55597,2417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [455] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1466), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [396] = { + [sym_identifier] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym___extension__] = ACTIONS(1698), + [anon_sym_extern] = ACTIONS(1698), + [anon_sym___attribute__] = ACTIONS(1698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1700), + [anon_sym___declspec] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1698), + [anon_sym_unsigned] = ACTIONS(1698), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_short] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_EQ] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1698), + [anon_sym_register] = ACTIONS(1698), + [anon_sym_inline] = ACTIONS(1698), + [anon_sym___inline] = ACTIONS(1698), + [anon_sym___inline__] = ACTIONS(1698), + [anon_sym___forceinline] = ACTIONS(1698), + [anon_sym_thread_local] = ACTIONS(1698), + [anon_sym___thread] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_constexpr] = ACTIONS(1698), + [anon_sym_volatile] = ACTIONS(1698), + [anon_sym_restrict] = ACTIONS(1698), + [anon_sym___restrict__] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(1698), + [anon_sym__Noreturn] = ACTIONS(1698), + [anon_sym_noreturn] = ACTIONS(1698), + [anon_sym_alignas] = ACTIONS(1698), + [anon_sym__Alignas] = ACTIONS(1698), + [sym_primitive_type] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(1698), + [anon_sym_COLON] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1698), + [anon_sym_union] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_do] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [anon_sym_goto] = ACTIONS(1698), + [anon_sym___try] = ACTIONS(1698), + [anon_sym___leave] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_sizeof] = ACTIONS(1698), + [anon_sym___alignof__] = ACTIONS(1698), + [anon_sym___alignof] = ACTIONS(1698), + [anon_sym__alignof] = ACTIONS(1698), + [anon_sym_alignof] = ACTIONS(1698), + [anon_sym__Alignof] = ACTIONS(1698), + [anon_sym_offsetof] = ACTIONS(1698), + [anon_sym__Generic] = ACTIONS(1698), + [anon_sym_asm] = ACTIONS(1698), + [anon_sym___asm__] = ACTIONS(1698), + [sym_number_literal] = ACTIONS(1700), + [anon_sym_L_SQUOTE] = ACTIONS(1700), + [anon_sym_u_SQUOTE] = ACTIONS(1700), + [anon_sym_U_SQUOTE] = ACTIONS(1700), + [anon_sym_u8_SQUOTE] = ACTIONS(1700), + [anon_sym_SQUOTE] = ACTIONS(1700), + [anon_sym_L_DQUOTE] = ACTIONS(1700), + [anon_sym_u_DQUOTE] = ACTIONS(1700), + [anon_sym_U_DQUOTE] = ACTIONS(1700), + [anon_sym_u8_DQUOTE] = ACTIONS(1700), + [anon_sym_DQUOTE] = ACTIONS(1700), + [sym_true] = ACTIONS(1698), + [sym_false] = ACTIONS(1698), + [anon_sym_NULL] = ACTIONS(1698), + [anon_sym_nullptr] = ACTIONS(1698), [sym_comment] = ACTIONS(3), }, - [456] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [397] = { + [sym_identifier] = ACTIONS(1702), + [anon_sym_COMMA] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym___extension__] = ACTIONS(1702), + [anon_sym_extern] = ACTIONS(1702), + [anon_sym___attribute__] = ACTIONS(1702), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1704), + [anon_sym___declspec] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_signed] = ACTIONS(1702), + [anon_sym_unsigned] = ACTIONS(1702), + [anon_sym_long] = ACTIONS(1702), + [anon_sym_short] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1702), + [anon_sym_register] = ACTIONS(1702), + [anon_sym_inline] = ACTIONS(1702), + [anon_sym___inline] = ACTIONS(1702), + [anon_sym___inline__] = ACTIONS(1702), + [anon_sym___forceinline] = ACTIONS(1702), + [anon_sym_thread_local] = ACTIONS(1702), + [anon_sym___thread] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_constexpr] = ACTIONS(1702), + [anon_sym_volatile] = ACTIONS(1702), + [anon_sym_restrict] = ACTIONS(1702), + [anon_sym___restrict__] = ACTIONS(1702), + [anon_sym__Atomic] = ACTIONS(1702), + [anon_sym__Noreturn] = ACTIONS(1702), + [anon_sym_noreturn] = ACTIONS(1702), + [anon_sym_alignas] = ACTIONS(1702), + [anon_sym__Alignas] = ACTIONS(1702), + [sym_primitive_type] = ACTIONS(1702), + [anon_sym_enum] = ACTIONS(1702), + [anon_sym_COLON] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1702), + [anon_sym_union] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_continue] = ACTIONS(1702), + [anon_sym_goto] = ACTIONS(1702), + [anon_sym___try] = ACTIONS(1702), + [anon_sym___leave] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_sizeof] = ACTIONS(1702), + [anon_sym___alignof__] = ACTIONS(1702), + [anon_sym___alignof] = ACTIONS(1702), + [anon_sym__alignof] = ACTIONS(1702), + [anon_sym_alignof] = ACTIONS(1702), + [anon_sym__Alignof] = ACTIONS(1702), + [anon_sym_offsetof] = ACTIONS(1702), + [anon_sym__Generic] = ACTIONS(1702), + [anon_sym_asm] = ACTIONS(1702), + [anon_sym___asm__] = ACTIONS(1702), + [sym_number_literal] = ACTIONS(1704), + [anon_sym_L_SQUOTE] = ACTIONS(1704), + [anon_sym_u_SQUOTE] = ACTIONS(1704), + [anon_sym_U_SQUOTE] = ACTIONS(1704), + [anon_sym_u8_SQUOTE] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_L_DQUOTE] = ACTIONS(1704), + [anon_sym_u_DQUOTE] = ACTIONS(1704), + [anon_sym_U_DQUOTE] = ACTIONS(1704), + [anon_sym_u8_DQUOTE] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [sym_true] = ACTIONS(1702), + [sym_false] = ACTIONS(1702), + [anon_sym_NULL] = ACTIONS(1702), + [anon_sym_nullptr] = ACTIONS(1702), [sym_comment] = ACTIONS(3), }, - [457] = { - [sym__expression] = STATE(985), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), + [398] = { + [sym_expression] = STATE(680), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), [sym_subscript_expression] = STATE(820), [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1891), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1377), + [anon_sym_GT_GT] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [458] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [399] = { + [sym_expression] = STATE(680), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(793), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(793), + [sym_call_expression] = STATE(793), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(793), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(793), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(679), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1377), + [aux_sym_preproc_if_token2] = ACTIONS(1377), + [aux_sym_preproc_else_token1] = ACTIONS(1377), + [aux_sym_preproc_elif_token1] = ACTIONS(1383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1377), + [anon_sym_GT_GT] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1712), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [459] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [400] = { + [sym_else_clause] = STATE(157), + [sym_identifier] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1714), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, - [460] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [401] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [461] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [402] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1739), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [462] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [aux_sym_preproc_include_token1] = ACTIONS(1895), - [aux_sym_preproc_def_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), - [sym_preproc_directive] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym___extension__] = ACTIONS(1895), - [anon_sym_typedef] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym___attribute__] = ACTIONS(1895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), - [anon_sym___declspec] = ACTIONS(1895), - [anon_sym___cdecl] = ACTIONS(1895), - [anon_sym___clrcall] = ACTIONS(1895), - [anon_sym___stdcall] = ACTIONS(1895), - [anon_sym___fastcall] = ACTIONS(1895), - [anon_sym___thiscall] = ACTIONS(1895), - [anon_sym___vectorcall] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_signed] = ACTIONS(1895), - [anon_sym_unsigned] = ACTIONS(1895), - [anon_sym_long] = ACTIONS(1895), - [anon_sym_short] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_auto] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_inline] = ACTIONS(1895), - [anon_sym___inline] = ACTIONS(1895), - [anon_sym___inline__] = ACTIONS(1895), - [anon_sym___forceinline] = ACTIONS(1895), - [anon_sym_thread_local] = ACTIONS(1895), - [anon_sym___thread] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1895), - [anon_sym_volatile] = ACTIONS(1895), - [anon_sym_restrict] = ACTIONS(1895), - [anon_sym___restrict__] = ACTIONS(1895), - [anon_sym__Atomic] = ACTIONS(1895), - [anon_sym__Noreturn] = ACTIONS(1895), - [anon_sym_noreturn] = ACTIONS(1895), - [sym_primitive_type] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_goto] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_sizeof] = ACTIONS(1895), - [anon_sym___alignof__] = ACTIONS(1895), - [anon_sym___alignof] = ACTIONS(1895), - [anon_sym__alignof] = ACTIONS(1895), - [anon_sym_alignof] = ACTIONS(1895), - [anon_sym__Alignof] = ACTIONS(1895), - [anon_sym_offsetof] = ACTIONS(1895), - [anon_sym__Generic] = ACTIONS(1895), - [anon_sym_asm] = ACTIONS(1895), - [anon_sym___asm__] = ACTIONS(1895), - [sym_number_literal] = ACTIONS(1893), - [anon_sym_L_SQUOTE] = ACTIONS(1893), - [anon_sym_u_SQUOTE] = ACTIONS(1893), - [anon_sym_U_SQUOTE] = ACTIONS(1893), - [anon_sym_u8_SQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_L_DQUOTE] = ACTIONS(1893), - [anon_sym_u_DQUOTE] = ACTIONS(1893), - [anon_sym_U_DQUOTE] = ACTIONS(1893), - [anon_sym_u8_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [anon_sym_NULL] = ACTIONS(1895), - [anon_sym_nullptr] = ACTIONS(1895), + [403] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1739), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [404] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [464] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [405] = { + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1749), + [anon_sym_TILDE] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1751), + [anon_sym_PLUS] = ACTIONS(1751), + [anon_sym_STAR] = ACTIONS(1749), + [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym___extension__] = ACTIONS(1753), + [anon_sym_extern] = ACTIONS(1753), + [anon_sym___attribute__] = ACTIONS(1753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1755), + [anon_sym___declspec] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_signed] = ACTIONS(1753), + [anon_sym_unsigned] = ACTIONS(1753), + [anon_sym_long] = ACTIONS(1753), + [anon_sym_short] = ACTIONS(1753), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_auto] = ACTIONS(1753), + [anon_sym_register] = ACTIONS(1753), + [anon_sym_inline] = ACTIONS(1753), + [anon_sym___inline] = ACTIONS(1753), + [anon_sym___inline__] = ACTIONS(1753), + [anon_sym___forceinline] = ACTIONS(1753), + [anon_sym_thread_local] = ACTIONS(1753), + [anon_sym___thread] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_constexpr] = ACTIONS(1753), + [anon_sym_volatile] = ACTIONS(1753), + [anon_sym_restrict] = ACTIONS(1753), + [anon_sym___restrict__] = ACTIONS(1753), + [anon_sym__Atomic] = ACTIONS(1753), + [anon_sym__Noreturn] = ACTIONS(1753), + [anon_sym_noreturn] = ACTIONS(1753), + [anon_sym_alignas] = ACTIONS(1753), + [anon_sym__Alignas] = ACTIONS(1753), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_struct] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1751), + [anon_sym_switch] = ACTIONS(1751), + [anon_sym_case] = ACTIONS(1751), + [anon_sym_default] = ACTIONS(1751), + [anon_sym_while] = ACTIONS(1751), + [anon_sym_do] = ACTIONS(1751), + [anon_sym_for] = ACTIONS(1751), + [anon_sym_return] = ACTIONS(1751), + [anon_sym_break] = ACTIONS(1751), + [anon_sym_continue] = ACTIONS(1751), + [anon_sym_goto] = ACTIONS(1751), + [anon_sym___try] = ACTIONS(1751), + [anon_sym___leave] = ACTIONS(1751), + [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1749), + [anon_sym_sizeof] = ACTIONS(1751), + [anon_sym___alignof__] = ACTIONS(1751), + [anon_sym___alignof] = ACTIONS(1751), + [anon_sym__alignof] = ACTIONS(1751), + [anon_sym_alignof] = ACTIONS(1751), + [anon_sym__Alignof] = ACTIONS(1751), + [anon_sym_offsetof] = ACTIONS(1751), + [anon_sym__Generic] = ACTIONS(1751), + [anon_sym_asm] = ACTIONS(1751), + [anon_sym___asm__] = ACTIONS(1751), + [sym_number_literal] = ACTIONS(1749), + [anon_sym_L_SQUOTE] = ACTIONS(1749), + [anon_sym_u_SQUOTE] = ACTIONS(1749), + [anon_sym_U_SQUOTE] = ACTIONS(1749), + [anon_sym_u8_SQUOTE] = ACTIONS(1749), + [anon_sym_SQUOTE] = ACTIONS(1749), + [anon_sym_L_DQUOTE] = ACTIONS(1749), + [anon_sym_u_DQUOTE] = ACTIONS(1749), + [anon_sym_U_DQUOTE] = ACTIONS(1749), + [anon_sym_u8_DQUOTE] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym_true] = ACTIONS(1751), + [sym_false] = ACTIONS(1751), + [anon_sym_NULL] = ACTIONS(1751), + [anon_sym_nullptr] = ACTIONS(1751), [sym_comment] = ACTIONS(3), }, - [465] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [406] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1758), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [466] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), + [407] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1760), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [467] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), + [408] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [468] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [409] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [469] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [410] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1760), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_include_token1] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym___extension__] = ACTIONS(1899), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___cdecl] = ACTIONS(1899), - [anon_sym___clrcall] = ACTIONS(1899), - [anon_sym___stdcall] = ACTIONS(1899), - [anon_sym___fastcall] = ACTIONS(1899), - [anon_sym___thiscall] = ACTIONS(1899), - [anon_sym___vectorcall] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_auto] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym___inline] = ACTIONS(1899), - [anon_sym___inline__] = ACTIONS(1899), - [anon_sym___forceinline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym___thread] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym___restrict__] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym__Noreturn] = ACTIONS(1899), - [anon_sym_noreturn] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_sizeof] = ACTIONS(1899), - [anon_sym___alignof__] = ACTIONS(1899), - [anon_sym___alignof] = ACTIONS(1899), - [anon_sym__alignof] = ACTIONS(1899), - [anon_sym_alignof] = ACTIONS(1899), - [anon_sym__Alignof] = ACTIONS(1899), - [anon_sym_offsetof] = ACTIONS(1899), - [anon_sym__Generic] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym___asm__] = ACTIONS(1899), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_L_SQUOTE] = ACTIONS(1897), - [anon_sym_u_SQUOTE] = ACTIONS(1897), - [anon_sym_U_SQUOTE] = ACTIONS(1897), - [anon_sym_u8_SQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_L_DQUOTE] = ACTIONS(1897), - [anon_sym_u_DQUOTE] = ACTIONS(1897), - [anon_sym_U_DQUOTE] = ACTIONS(1897), - [anon_sym_u8_DQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [anon_sym_NULL] = ACTIONS(1899), - [anon_sym_nullptr] = ACTIONS(1899), + [411] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), + [412] = { + [sym_expression] = STATE(838), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1377), + [anon_sym_GT_GT] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [472] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [413] = { + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1139), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_based_modifier] = STATE(1827), + [sym_ms_call_modifier] = STATE(1231), + [sym__declarator] = STATE(1386), + [sym__abstract_declarator] = STATE(1517), + [sym_parenthesized_declarator] = STATE(1322), + [sym_abstract_parenthesized_declarator] = STATE(1442), + [sym_attributed_declarator] = STATE(1322), + [sym_pointer_declarator] = STATE(1322), + [sym_abstract_pointer_declarator] = STATE(1442), + [sym_function_declarator] = STATE(1322), + [sym_abstract_function_declarator] = STATE(1442), + [sym_array_declarator] = STATE(1322), + [sym_abstract_array_declarator] = STATE(1442), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_variadic_parameter] = STATE(1530), + [sym_parameter_list] = STATE(1443), + [sym_parameter_declaration] = STATE(1530), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), + [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_LPAREN2] = ACTIONS(1779), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___based] = ACTIONS(1783), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [473] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [414] = { + [sym_type_qualifier] = STATE(422), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1053), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_RBRACK] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [474] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [415] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1070), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [475] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1458), - [aux_sym_preproc_include_token1] = ACTIONS(1458), - [aux_sym_preproc_def_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), - [sym_preproc_directive] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym___extension__] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym___attribute__] = ACTIONS(1458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), - [anon_sym___declspec] = ACTIONS(1458), - [anon_sym___cdecl] = ACTIONS(1458), - [anon_sym___clrcall] = ACTIONS(1458), - [anon_sym___stdcall] = ACTIONS(1458), - [anon_sym___fastcall] = ACTIONS(1458), - [anon_sym___thiscall] = ACTIONS(1458), - [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_auto] = ACTIONS(1458), - [anon_sym_register] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym___inline] = ACTIONS(1458), - [anon_sym___inline__] = ACTIONS(1458), - [anon_sym___forceinline] = ACTIONS(1458), - [anon_sym_thread_local] = ACTIONS(1458), - [anon_sym___thread] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_constexpr] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_restrict] = ACTIONS(1458), - [anon_sym___restrict__] = ACTIONS(1458), - [anon_sym__Atomic] = ACTIONS(1458), - [anon_sym__Noreturn] = ACTIONS(1458), - [anon_sym_noreturn] = ACTIONS(1458), - [sym_primitive_type] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_goto] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym___alignof__] = ACTIONS(1458), - [anon_sym___alignof] = ACTIONS(1458), - [anon_sym__alignof] = ACTIONS(1458), - [anon_sym_alignof] = ACTIONS(1458), - [anon_sym__Alignof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1458), - [anon_sym___asm__] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(1460), - [anon_sym_L_SQUOTE] = ACTIONS(1460), - [anon_sym_u_SQUOTE] = ACTIONS(1460), - [anon_sym_U_SQUOTE] = ACTIONS(1460), - [anon_sym_u8_SQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_L_DQUOTE] = ACTIONS(1460), - [anon_sym_u_DQUOTE] = ACTIONS(1460), - [anon_sym_U_DQUOTE] = ACTIONS(1460), - [anon_sym_u8_DQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [anon_sym_NULL] = ACTIONS(1458), - [anon_sym_nullptr] = ACTIONS(1458), + [416] = { + [sym_type_qualifier] = STATE(418), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1072), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(418), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_RBRACK] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [417] = { + [sym_type_qualifier] = STATE(419), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1064), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(419), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_RBRACK] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [418] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1054), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [478] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), + [419] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1063), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [420] = { + [sym_type_qualifier] = STATE(421), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1061), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_RBRACK] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [480] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1450), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym___extension__] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), - [anon_sym___declspec] = ACTIONS(1450), - [anon_sym___cdecl] = ACTIONS(1450), - [anon_sym___clrcall] = ACTIONS(1450), - [anon_sym___stdcall] = ACTIONS(1450), - [anon_sym___fastcall] = ACTIONS(1450), - [anon_sym___thiscall] = ACTIONS(1450), - [anon_sym___vectorcall] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___inline] = ACTIONS(1450), - [anon_sym___inline__] = ACTIONS(1450), - [anon_sym___forceinline] = ACTIONS(1450), - [anon_sym_thread_local] = ACTIONS(1450), - [anon_sym___thread] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_constexpr] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym___restrict__] = ACTIONS(1450), - [anon_sym__Atomic] = ACTIONS(1450), - [anon_sym__Noreturn] = ACTIONS(1450), - [anon_sym_noreturn] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1450), - [anon_sym___alignof__] = ACTIONS(1450), - [anon_sym___alignof] = ACTIONS(1450), - [anon_sym__alignof] = ACTIONS(1450), - [anon_sym_alignof] = ACTIONS(1450), - [anon_sym__Alignof] = ACTIONS(1450), - [anon_sym_offsetof] = ACTIONS(1450), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1450), - [anon_sym___asm__] = ACTIONS(1450), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_L_SQUOTE] = ACTIONS(1452), - [anon_sym_u_SQUOTE] = ACTIONS(1452), - [anon_sym_U_SQUOTE] = ACTIONS(1452), - [anon_sym_u8_SQUOTE] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_L_DQUOTE] = ACTIONS(1452), - [anon_sym_u_DQUOTE] = ACTIONS(1452), - [anon_sym_U_DQUOTE] = ACTIONS(1452), - [anon_sym_u8_DQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [anon_sym_NULL] = ACTIONS(1450), - [anon_sym_nullptr] = ACTIONS(1450), + [421] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1059), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [481] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [422] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1052), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [482] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2213), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [423] = { + [sym_type_qualifier] = STATE(415), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1067), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [483] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2141), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), + [424] = { + [sym_preproc_def] = STATE(439), + [sym_preproc_function_def] = STATE(439), + [sym_preproc_call] = STATE(439), + [sym_preproc_if_in_field_declaration_list] = STATE(439), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(439), + [sym_preproc_else_in_field_declaration_list] = STATE(1887), + [sym_preproc_elif_in_field_declaration_list] = STATE(1887), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1887), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(439), + [sym_field_declaration] = STATE(439), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(439), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -68506,87 +58016,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [484] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1984), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), + [425] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1795), + [sym_preproc_elif_in_field_declaration_list] = STATE(1795), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1795), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -68595,87 +58089,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [485] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2004), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), + [426] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1905), + [sym_preproc_elif_in_field_declaration_list] = STATE(1905), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1905), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -68684,3914 +58162,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [486] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1942), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [487] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2212), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [488] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2226), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [489] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1936), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [490] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1965), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [491] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2178), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [492] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2136), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [493] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1938), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [494] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2103), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [495] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1931), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [496] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2087), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [497] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2142), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [498] = { - [sym_identifier] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1909), - [anon_sym_LPAREN2] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1909), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_PLUS] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym___extension__] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym___attribute__] = ACTIONS(1907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1909), - [anon_sym___declspec] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_signed] = ACTIONS(1907), - [anon_sym_unsigned] = ACTIONS(1907), - [anon_sym_long] = ACTIONS(1907), - [anon_sym_short] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_EQ] = ACTIONS(1909), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_auto] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_inline] = ACTIONS(1907), - [anon_sym___inline] = ACTIONS(1907), - [anon_sym___inline__] = ACTIONS(1907), - [anon_sym___forceinline] = ACTIONS(1907), - [anon_sym_thread_local] = ACTIONS(1907), - [anon_sym___thread] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [anon_sym_constexpr] = ACTIONS(1907), - [anon_sym_volatile] = ACTIONS(1907), - [anon_sym_restrict] = ACTIONS(1907), - [anon_sym___restrict__] = ACTIONS(1907), - [anon_sym__Atomic] = ACTIONS(1907), - [anon_sym__Noreturn] = ACTIONS(1907), - [anon_sym_noreturn] = ACTIONS(1907), - [sym_primitive_type] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1907), - [anon_sym_COLON] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_union] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_switch] = ACTIONS(1907), - [anon_sym_case] = ACTIONS(1907), - [anon_sym_default] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_goto] = ACTIONS(1907), - [anon_sym___try] = ACTIONS(1907), - [anon_sym___leave] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1909), - [anon_sym_PLUS_PLUS] = ACTIONS(1909), - [anon_sym_sizeof] = ACTIONS(1907), - [anon_sym___alignof__] = ACTIONS(1907), - [anon_sym___alignof] = ACTIONS(1907), - [anon_sym__alignof] = ACTIONS(1907), - [anon_sym_alignof] = ACTIONS(1907), - [anon_sym__Alignof] = ACTIONS(1907), - [anon_sym_offsetof] = ACTIONS(1907), - [anon_sym__Generic] = ACTIONS(1907), - [anon_sym_asm] = ACTIONS(1907), - [anon_sym___asm__] = ACTIONS(1907), - [sym_number_literal] = ACTIONS(1909), - [anon_sym_L_SQUOTE] = ACTIONS(1909), - [anon_sym_u_SQUOTE] = ACTIONS(1909), - [anon_sym_U_SQUOTE] = ACTIONS(1909), - [anon_sym_u8_SQUOTE] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_L_DQUOTE] = ACTIONS(1909), - [anon_sym_u_DQUOTE] = ACTIONS(1909), - [anon_sym_U_DQUOTE] = ACTIONS(1909), - [anon_sym_u8_DQUOTE] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym_true] = ACTIONS(1907), - [sym_false] = ACTIONS(1907), - [anon_sym_NULL] = ACTIONS(1907), - [anon_sym_nullptr] = ACTIONS(1907), - [sym_comment] = ACTIONS(3), - }, - [499] = { - [sym_identifier] = ACTIONS(1911), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LPAREN2] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym___extension__] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1911), - [anon_sym___attribute__] = ACTIONS(1911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1913), - [anon_sym___declspec] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_signed] = ACTIONS(1911), - [anon_sym_unsigned] = ACTIONS(1911), - [anon_sym_long] = ACTIONS(1911), - [anon_sym_short] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_auto] = ACTIONS(1911), - [anon_sym_register] = ACTIONS(1911), - [anon_sym_inline] = ACTIONS(1911), - [anon_sym___inline] = ACTIONS(1911), - [anon_sym___inline__] = ACTIONS(1911), - [anon_sym___forceinline] = ACTIONS(1911), - [anon_sym_thread_local] = ACTIONS(1911), - [anon_sym___thread] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_constexpr] = ACTIONS(1911), - [anon_sym_volatile] = ACTIONS(1911), - [anon_sym_restrict] = ACTIONS(1911), - [anon_sym___restrict__] = ACTIONS(1911), - [anon_sym__Atomic] = ACTIONS(1911), - [anon_sym__Noreturn] = ACTIONS(1911), - [anon_sym_noreturn] = ACTIONS(1911), - [sym_primitive_type] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_union] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_switch] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_do] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_goto] = ACTIONS(1911), - [anon_sym___try] = ACTIONS(1911), - [anon_sym___leave] = ACTIONS(1911), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_sizeof] = ACTIONS(1911), - [anon_sym___alignof__] = ACTIONS(1911), - [anon_sym___alignof] = ACTIONS(1911), - [anon_sym__alignof] = ACTIONS(1911), - [anon_sym_alignof] = ACTIONS(1911), - [anon_sym__Alignof] = ACTIONS(1911), - [anon_sym_offsetof] = ACTIONS(1911), - [anon_sym__Generic] = ACTIONS(1911), - [anon_sym_asm] = ACTIONS(1911), - [anon_sym___asm__] = ACTIONS(1911), - [sym_number_literal] = ACTIONS(1913), - [anon_sym_L_SQUOTE] = ACTIONS(1913), - [anon_sym_u_SQUOTE] = ACTIONS(1913), - [anon_sym_U_SQUOTE] = ACTIONS(1913), - [anon_sym_u8_SQUOTE] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1913), - [anon_sym_L_DQUOTE] = ACTIONS(1913), - [anon_sym_u_DQUOTE] = ACTIONS(1913), - [anon_sym_U_DQUOTE] = ACTIONS(1913), - [anon_sym_u8_DQUOTE] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym_true] = ACTIONS(1911), - [sym_false] = ACTIONS(1911), - [anon_sym_NULL] = ACTIONS(1911), - [anon_sym_nullptr] = ACTIONS(1911), - [sym_comment] = ACTIONS(3), - }, - [500] = { - [sym__expression] = STATE(835), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_COLON] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [501] = { - [sym__expression] = STATE(835), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1522), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1921), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [502] = { - [sym__expression] = STATE(921), - [sym__expression_not_binary] = STATE(928), - [sym_conditional_expression] = STATE(928), - [sym_assignment_expression] = STATE(928), - [sym_pointer_expression] = STATE(952), - [sym_unary_expression] = STATE(928), - [sym_binary_expression] = STATE(928), - [sym_update_expression] = STATE(928), - [sym_cast_expression] = STATE(928), - [sym_sizeof_expression] = STATE(928), - [sym_alignof_expression] = STATE(928), - [sym_offsetof_expression] = STATE(928), - [sym_generic_expression] = STATE(928), - [sym_subscript_expression] = STATE(952), - [sym_call_expression] = STATE(952), - [sym_gnu_asm_expression] = STATE(928), - [sym_field_expression] = STATE(952), - [sym_compound_literal_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(952), - [sym_initializer_list] = STATE(965), - [sym_char_literal] = STATE(928), - [sym_concatenated_string] = STATE(928), - [sym_string_literal] = STATE(849), - [sym_null] = STATE(928), - [sym_identifier] = ACTIONS(1522), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1927), - [anon_sym___alignof__] = ACTIONS(1773), - [anon_sym___alignof] = ACTIONS(1773), - [anon_sym__alignof] = ACTIONS(1773), - [anon_sym_alignof] = ACTIONS(1773), - [anon_sym__Alignof] = ACTIONS(1773), - [anon_sym_offsetof] = ACTIONS(1775), - [anon_sym__Generic] = ACTIONS(1777), - [anon_sym_asm] = ACTIONS(1779), - [anon_sym___asm__] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_L_SQUOTE] = ACTIONS(1783), - [anon_sym_u_SQUOTE] = ACTIONS(1783), - [anon_sym_U_SQUOTE] = ACTIONS(1783), - [anon_sym_u8_SQUOTE] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_L_DQUOTE] = ACTIONS(1785), - [anon_sym_u_DQUOTE] = ACTIONS(1785), - [anon_sym_U_DQUOTE] = ACTIONS(1785), - [anon_sym_u8_DQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [anon_sym_NULL] = ACTIONS(1789), - [anon_sym_nullptr] = ACTIONS(1789), - [sym_comment] = ACTIONS(3), - }, - [503] = { - [sym_else_clause] = STATE(295), - [sym_identifier] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [504] = { - [sym__expression] = STATE(985), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1933), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [505] = { - [sym_identifier] = ACTIONS(1939), - [anon_sym_LPAREN2] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1948), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [anon_sym___inline] = ACTIONS(1946), - [anon_sym___inline__] = ACTIONS(1946), - [anon_sym___forceinline] = ACTIONS(1946), - [anon_sym_thread_local] = ACTIONS(1946), - [anon_sym___thread] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_constexpr] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym___restrict__] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym__Noreturn] = ACTIONS(1946), - [anon_sym_noreturn] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_switch] = ACTIONS(1944), - [anon_sym_case] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_do] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_goto] = ACTIONS(1944), - [anon_sym___try] = ACTIONS(1944), - [anon_sym___leave] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_sizeof] = ACTIONS(1944), - [anon_sym___alignof__] = ACTIONS(1944), - [anon_sym___alignof] = ACTIONS(1944), - [anon_sym__alignof] = ACTIONS(1944), - [anon_sym_alignof] = ACTIONS(1944), - [anon_sym__Alignof] = ACTIONS(1944), - [anon_sym_offsetof] = ACTIONS(1944), - [anon_sym__Generic] = ACTIONS(1944), - [anon_sym_asm] = ACTIONS(1944), - [anon_sym___asm__] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(1942), - [anon_sym_L_SQUOTE] = ACTIONS(1942), - [anon_sym_u_SQUOTE] = ACTIONS(1942), - [anon_sym_U_SQUOTE] = ACTIONS(1942), - [anon_sym_u8_SQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_L_DQUOTE] = ACTIONS(1942), - [anon_sym_u_DQUOTE] = ACTIONS(1942), - [anon_sym_U_DQUOTE] = ACTIONS(1942), - [anon_sym_u8_DQUOTE] = ACTIONS(1942), - [anon_sym_DQUOTE] = ACTIONS(1942), - [sym_true] = ACTIONS(1944), - [sym_false] = ACTIONS(1944), - [anon_sym_NULL] = ACTIONS(1944), - [anon_sym_nullptr] = ACTIONS(1944), - [sym_comment] = ACTIONS(3), - }, - [506] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [507] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [508] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [509] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [510] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [511] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [512] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [513] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [514] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [515] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [516] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [517] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [518] = { - [sym_type_qualifier] = STATE(519), - [sym__expression] = STATE(1297), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [519] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1269), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [520] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1278), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [521] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1293), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [522] = { - [sym_type_qualifier] = STATE(521), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [523] = { - [sym_type_qualifier] = STATE(525), - [sym__expression] = STATE(1264), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [524] = { - [sym_type_qualifier] = STATE(520), - [sym__expression] = STATE(1275), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(520), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [525] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1288), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [526] = { - [sym_type_qualifier] = STATE(527), - [sym__expression] = STATE(1283), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [527] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1266), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [528] = { - [sym__expression] = STATE(1200), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1802), - [sym_initializer_pair] = STATE(1802), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_COMMA] = ACTIONS(2037), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [529] = { - [sym__expression] = STATE(1191), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1814), - [sym_initializer_pair] = STATE(1814), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [530] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [531] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [532] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [533] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [534] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym_preproc_else_in_field_declaration_list] = STATE(2124), - [sym_preproc_elif_in_field_declaration_list] = STATE(2124), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2124), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [427] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1926), + [sym_preproc_elif_in_field_declaration_list] = STATE(1926), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1926), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -72614,54 +58235,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [535] = { - [sym_preproc_def] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_preproc_call] = STATE(542), - [sym_preproc_if_in_field_declaration_list] = STATE(542), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(542), - [sym_preproc_else_in_field_declaration_list] = STATE(2021), - [sym_preproc_elif_in_field_declaration_list] = STATE(2021), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2021), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(542), - [sym_field_declaration] = STATE(542), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(542), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [428] = { + [sym_preproc_def] = STATE(425), + [sym_preproc_function_def] = STATE(425), + [sym_preproc_call] = STATE(425), + [sym_preproc_if_in_field_declaration_list] = STATE(425), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(425), + [sym_preproc_else_in_field_declaration_list] = STATE(1745), + [sym_preproc_elif_in_field_declaration_list] = STATE(1745), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1745), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(425), + [sym_field_declaration] = STATE(425), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(425), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -72684,54 +58308,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [536] = { - [sym_preproc_def] = STATE(537), - [sym_preproc_function_def] = STATE(537), - [sym_preproc_call] = STATE(537), - [sym_preproc_if_in_field_declaration_list] = STATE(537), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(537), - [sym_preproc_else_in_field_declaration_list] = STATE(2064), - [sym_preproc_elif_in_field_declaration_list] = STATE(2064), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2064), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(537), - [sym_field_declaration] = STATE(537), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(537), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [429] = { + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_preproc_else_in_field_declaration_list] = STATE(1883), + [sym_preproc_elif_in_field_declaration_list] = STATE(1883), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1883), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -72754,54 +58381,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [537] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym_preproc_else_in_field_declaration_list] = STATE(2049), - [sym_preproc_elif_in_field_declaration_list] = STATE(2049), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2049), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [430] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1867), + [sym_preproc_elif_in_field_declaration_list] = STATE(1867), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1867), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -72824,124 +58454,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [538] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym_preproc_def] = STATE(543), - [sym_preproc_function_def] = STATE(543), - [sym_preproc_call] = STATE(543), - [sym_preproc_if_in_field_declaration_list] = STATE(543), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(543), - [sym_preproc_else_in_field_declaration_list] = STATE(2203), - [sym_preproc_elif_in_field_declaration_list] = STATE(2203), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2203), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(543), - [sym_field_declaration] = STATE(543), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(543), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [431] = { + [sym_preproc_def] = STATE(427), + [sym_preproc_function_def] = STATE(427), + [sym_preproc_call] = STATE(427), + [sym_preproc_if_in_field_declaration_list] = STATE(427), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(427), + [sym_preproc_else_in_field_declaration_list] = STATE(1904), + [sym_preproc_elif_in_field_declaration_list] = STATE(1904), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1904), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(427), + [sym_field_declaration] = STATE(427), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(427), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -72964,59 +58527,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [540] = { - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1349), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_based_modifier] = STATE(2001), - [sym__declarator] = STATE(1614), - [sym__abstract_declarator] = STATE(1704), - [sym_parenthesized_declarator] = STATE(1537), - [sym_abstract_parenthesized_declarator] = STATE(1650), - [sym_attributed_declarator] = STATE(1537), - [sym_pointer_declarator] = STATE(1537), - [sym_abstract_pointer_declarator] = STATE(1650), - [sym_function_declarator] = STATE(1537), - [sym_abstract_function_declarator] = STATE(1650), - [sym_array_declarator] = STATE(1537), - [sym_abstract_array_declarator] = STATE(1650), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_variadic_parameter] = STATE(1743), - [sym_parameter_list] = STATE(1653), - [sym_parameter_declaration] = STATE(1743), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2085), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_LPAREN2] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2091), + [432] = { + [sym_preproc_def] = STATE(436), + [sym_preproc_function_def] = STATE(436), + [sym_preproc_call] = STATE(436), + [sym_preproc_if_in_field_declaration_list] = STATE(436), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(436), + [sym_preproc_else_in_field_declaration_list] = STATE(1884), + [sym_preproc_elif_in_field_declaration_list] = STATE(1884), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1884), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(436), + [sym_field_declaration] = STATE(436), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(436), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(2093), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(2095), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -73034,54 +58600,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [541] = { - [sym_preproc_def] = STATE(534), - [sym_preproc_function_def] = STATE(534), - [sym_preproc_call] = STATE(534), - [sym_preproc_if_in_field_declaration_list] = STATE(534), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(534), - [sym_preproc_else_in_field_declaration_list] = STATE(2053), - [sym_preproc_elif_in_field_declaration_list] = STATE(2053), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2053), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(534), - [sym_field_declaration] = STATE(534), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(534), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [433] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1870), + [sym_preproc_elif_in_field_declaration_list] = STATE(1870), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1870), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -73104,54 +58673,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [542] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym_preproc_else_in_field_declaration_list] = STATE(2067), - [sym_preproc_elif_in_field_declaration_list] = STATE(2067), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2067), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2099), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [434] = { + [sym_preproc_def] = STATE(433), + [sym_preproc_function_def] = STATE(433), + [sym_preproc_call] = STATE(433), + [sym_preproc_if_in_field_declaration_list] = STATE(433), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(433), + [sym_preproc_else_in_field_declaration_list] = STATE(1900), + [sym_preproc_elif_in_field_declaration_list] = STATE(1900), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1900), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(433), + [sym_field_declaration] = STATE(433), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(433), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -73174,54 +58746,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [543] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym_preproc_else_in_field_declaration_list] = STATE(2189), - [sym_preproc_elif_in_field_declaration_list] = STATE(2189), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2189), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [435] = { + [sym_preproc_def] = STATE(426), + [sym_preproc_function_def] = STATE(426), + [sym_preproc_call] = STATE(426), + [sym_preproc_if_in_field_declaration_list] = STATE(426), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(426), + [sym_preproc_else_in_field_declaration_list] = STATE(1869), + [sym_preproc_elif_in_field_declaration_list] = STATE(1869), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1869), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(426), + [sym_field_declaration] = STATE(426), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(426), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -73244,51 +58819,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [544] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2186), - [sym_preproc_elif_in_field_declaration_list] = STATE(2186), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [436] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1865), + [sym_preproc_elif_in_field_declaration_list] = STATE(1865), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1865), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1889), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -73311,51 +58892,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [545] = { - [sym_preproc_def] = STATE(546), - [sym_preproc_function_def] = STATE(546), - [sym_preproc_call] = STATE(546), - [sym_preproc_if_in_field_declaration_list] = STATE(546), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(546), - [sym_preproc_else_in_field_declaration_list] = STATE(2159), - [sym_preproc_elif_in_field_declaration_list] = STATE(2159), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(546), - [sym_field_declaration] = STATE(546), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(546), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [437] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1868), + [sym_preproc_elif_in_field_declaration_list] = STATE(1868), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1868), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -73378,51 +58965,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [546] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2182), - [sym_preproc_elif_in_field_declaration_list] = STATE(2182), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [438] = { + [sym_preproc_def] = STATE(437), + [sym_preproc_function_def] = STATE(437), + [sym_preproc_call] = STATE(437), + [sym_preproc_if_in_field_declaration_list] = STATE(437), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(437), + [sym_preproc_else_in_field_declaration_list] = STATE(1780), + [sym_preproc_elif_in_field_declaration_list] = STATE(1780), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1780), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(437), + [sym_field_declaration] = STATE(437), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(437), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1893), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -73445,51 +59038,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [547] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(2100), - [sym_preproc_elif_in_field_declaration_list] = STATE(2100), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [439] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1881), + [sym_preproc_elif_in_field_declaration_list] = STATE(1881), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1881), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -73512,123 +59111,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [548] = { - [sym_preproc_def] = STATE(553), - [sym_preproc_function_def] = STATE(553), - [sym_preproc_call] = STATE(553), - [sym_preproc_if_in_field_declaration_list] = STATE(553), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), - [sym_preproc_else_in_field_declaration_list] = STATE(2181), - [sym_preproc_elif_in_field_declaration_list] = STATE(2181), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(553), - [sym_field_declaration] = STATE(553), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [440] = { + [sym_expression] = STATE(993), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(1618), + [sym_initializer_pair] = STATE(1618), + [sym_subscript_designator] = STATE(1387), + [sym_subscript_range_designator] = STATE(1387), + [sym_field_designator] = STATE(1387), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_initializer_pair_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1905), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [549] = { - [sym_preproc_def] = STATE(550), - [sym_preproc_function_def] = STATE(550), - [sym_preproc_call] = STATE(550), - [sym_preproc_if_in_field_declaration_list] = STATE(550), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(550), - [sym_preproc_else_in_field_declaration_list] = STATE(2054), - [sym_preproc_elif_in_field_declaration_list] = STATE(2054), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(550), - [sym_field_declaration] = STATE(550), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(550), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [441] = { + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1139), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(1340), + [sym__abstract_declarator] = STATE(1517), + [sym_abstract_parenthesized_declarator] = STATE(1442), + [sym_abstract_pointer_declarator] = STATE(1442), + [sym_abstract_function_declarator] = STATE(1442), + [sym_abstract_array_declarator] = STATE(1442), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_variadic_parameter] = STATE(1530), + [sym_parameter_list] = STATE(1443), + [sym_parameter_declaration] = STATE(1530), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), + [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1909), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -73646,510 +59255,865 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [550] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2047), - [sym_preproc_elif_in_field_declaration_list] = STATE(2047), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [442] = { + [sym_expression] = STATE(1008), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(1643), + [sym_initializer_pair] = STATE(1643), + [sym_subscript_designator] = STATE(1387), + [sym_subscript_range_designator] = STATE(1387), + [sym_field_designator] = STATE(1387), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_initializer_pair_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1897), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1905), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [551] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2077), - [sym_preproc_elif_in_field_declaration_list] = STATE(2077), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [443] = { + [sym_expression] = STATE(1008), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(1643), + [sym_initializer_pair] = STATE(1643), + [sym_subscript_designator] = STATE(1387), + [sym_subscript_range_designator] = STATE(1387), + [sym_field_designator] = STATE(1387), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_initializer_pair_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1897), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1905), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [552] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2127), - [aux_sym_preproc_def_token1] = ACTIONS(2130), - [aux_sym_preproc_if_token1] = ACTIONS(2133), - [aux_sym_preproc_if_token2] = ACTIONS(2136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), - [aux_sym_preproc_else_token1] = ACTIONS(2136), - [aux_sym_preproc_elif_token1] = ACTIONS(2136), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2136), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2136), - [sym_preproc_directive] = ACTIONS(2141), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2153), - [anon_sym___declspec] = ACTIONS(2156), - [anon_sym_signed] = ACTIONS(2159), - [anon_sym_unsigned] = ACTIONS(2159), - [anon_sym_long] = ACTIONS(2159), - [anon_sym_short] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_auto] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_inline] = ACTIONS(2147), - [anon_sym___inline] = ACTIONS(2147), - [anon_sym___inline__] = ACTIONS(2147), - [anon_sym___forceinline] = ACTIONS(2147), - [anon_sym_thread_local] = ACTIONS(2147), - [anon_sym___thread] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2171), + [444] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1915), + [aux_sym_preproc_def_token1] = ACTIONS(1918), + [aux_sym_preproc_if_token1] = ACTIONS(1921), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1926), + [aux_sym_preproc_else_token1] = ACTIONS(1924), + [aux_sym_preproc_elif_token1] = ACTIONS(1924), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1924), + [sym_preproc_directive] = ACTIONS(1929), + [anon_sym___extension__] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym___attribute__] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_auto] = ACTIONS(1935), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_inline] = ACTIONS(1935), + [anon_sym___inline] = ACTIONS(1935), + [anon_sym___inline__] = ACTIONS(1935), + [anon_sym___forceinline] = ACTIONS(1935), + [anon_sym_thread_local] = ACTIONS(1935), + [anon_sym___thread] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_constexpr] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym___restrict__] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym__Noreturn] = ACTIONS(1932), + [anon_sym_noreturn] = ACTIONS(1932), + [anon_sym_alignas] = ACTIONS(1950), + [anon_sym__Alignas] = ACTIONS(1950), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1959), + [anon_sym_union] = ACTIONS(1962), [sym_comment] = ACTIONS(3), }, - [553] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2215), - [sym_preproc_elif_in_field_declaration_list] = STATE(2215), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [554] = { - [sym_preproc_def] = STATE(544), - [sym_preproc_function_def] = STATE(544), - [sym_preproc_call] = STATE(544), - [sym_preproc_if_in_field_declaration_list] = STATE(544), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(544), - [sym_preproc_else_in_field_declaration_list] = STATE(2198), - [sym_preproc_elif_in_field_declaration_list] = STATE(2198), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(544), - [sym_field_declaration] = STATE(544), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(544), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [555] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2158), - [sym_preproc_elif_in_field_declaration_list] = STATE(2158), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [556] = { - [sym_preproc_def] = STATE(551), - [sym_preproc_function_def] = STATE(551), - [sym_preproc_call] = STATE(551), - [sym_preproc_if_in_field_declaration_list] = STATE(551), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), - [sym_preproc_else_in_field_declaration_list] = STATE(2061), - [sym_preproc_elif_in_field_declaration_list] = STATE(2061), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(551), - [sym_field_declaration] = STATE(551), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [445] = { + [sym_expression] = STATE(1008), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(1643), + [sym_initializer_pair] = STATE(1643), + [sym_subscript_designator] = STATE(1387), + [sym_subscript_range_designator] = STATE(1387), + [sym_field_designator] = STATE(1387), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_initializer_pair_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1897), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1905), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(1965), 1, + aux_sym_preproc_def_token1, + ACTIONS(1967), 1, + aux_sym_preproc_if_token1, + ACTIONS(1971), 1, + sym_preproc_directive, + ACTIONS(1973), 1, + anon_sym_RBRACE, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1247), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1969), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(450), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [115] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(1975), 1, + aux_sym_preproc_def_token1, + ACTIONS(1977), 1, + aux_sym_preproc_if_token1, + ACTIONS(1979), 1, + aux_sym_preproc_if_token2, + ACTIONS(1983), 1, + sym_preproc_directive, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1253), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1981), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(449), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [230] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + sym_identifier, + ACTIONS(1924), 1, + aux_sym_preproc_if_token2, + ACTIONS(1938), 1, + anon_sym___attribute__, + ACTIONS(1941), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1944), 1, + anon_sym___declspec, + ACTIONS(1953), 1, + sym_primitive_type, + ACTIONS(1956), 1, + anon_sym_enum, + ACTIONS(1959), 1, + anon_sym_struct, + ACTIONS(1962), 1, + anon_sym_union, + ACTIONS(1985), 1, + aux_sym_preproc_def_token1, + ACTIONS(1988), 1, + aux_sym_preproc_if_token1, + ACTIONS(1994), 1, + sym_preproc_directive, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1253), 1, + sym__declaration_specifiers, + ACTIONS(1950), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1991), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(448), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(1932), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1935), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [345] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(1975), 1, + aux_sym_preproc_def_token1, + ACTIONS(1977), 1, + aux_sym_preproc_if_token1, + ACTIONS(1983), 1, + sym_preproc_directive, + ACTIONS(1997), 1, + aux_sym_preproc_if_token2, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1253), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1981), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(448), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [460] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + sym_identifier, + ACTIONS(1938), 1, + anon_sym___attribute__, + ACTIONS(1941), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1944), 1, + anon_sym___declspec, + ACTIONS(1953), 1, + sym_primitive_type, + ACTIONS(1956), 1, + anon_sym_enum, + ACTIONS(1959), 1, + anon_sym_struct, + ACTIONS(1962), 1, + anon_sym_union, + ACTIONS(1999), 1, + aux_sym_preproc_def_token1, + ACTIONS(2002), 1, + aux_sym_preproc_if_token1, + ACTIONS(2008), 1, + sym_preproc_directive, + ACTIONS(2011), 1, + anon_sym_RBRACE, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1247), 1, + sym__declaration_specifiers, + ACTIONS(1950), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2005), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(450), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(1932), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1935), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [575] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(1965), 1, + aux_sym_preproc_def_token1, + ACTIONS(1967), 1, + aux_sym_preproc_if_token1, + ACTIONS(1971), 1, + sym_preproc_directive, + ACTIONS(2013), 1, + anon_sym_RBRACE, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1247), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1969), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(446), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [690] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2182), 1, + ACTIONS(2015), 1, anon_sym_RPAREN, - ACTIONS(2184), 1, + ACTIONS(2017), 1, anon_sym___extension__, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1195), 1, - sym__expression, - STATE(1816), 1, + STATE(995), 1, + sym_expression, + STATE(1545), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -74160,44 +60124,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -74213,32 +60177,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [114] = 25, + [804] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2186), 1, + ACTIONS(2019), 1, anon_sym_RPAREN, - ACTIONS(2188), 1, + ACTIONS(2021), 1, anon_sym___extension__, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1192), 1, - sym__expression, - STATE(1759), 1, + STATE(997), 1, + sym_expression, + STATE(1528), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -74249,44 +60213,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -74302,117 +60266,30 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [228] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym___attribute__, - ACTIONS(2153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2156), 1, - anon_sym___declspec, - ACTIONS(2162), 1, - sym_primitive_type, - ACTIONS(2165), 1, - anon_sym_enum, - ACTIONS(2168), 1, - anon_sym_struct, - ACTIONS(2171), 1, - anon_sym_union, - ACTIONS(2190), 1, - aux_sym_preproc_def_token1, - ACTIONS(2193), 1, - aux_sym_preproc_if_token1, - ACTIONS(2199), 1, - sym_preproc_directive, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1466), 1, - sym__declaration_specifiers, - ACTIONS(2196), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2136), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(2159), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(559), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2144), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2147), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [338] = 24, + [918] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2202), 1, + ACTIONS(2023), 1, anon_sym___extension__, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1228), 1, - sym__expression, - STATE(1843), 1, + STATE(1047), 1, + sym_expression, + STATE(1707), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -74423,44 +60300,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -74476,29 +60353,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [449] = 23, + [1029] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2025), 1, + anon_sym_RPAREN, + STATE(659), 1, sym_string_literal, - STATE(809), 1, - sym_initializer_list, - STATE(835), 1, - sym__expression, + STATE(1028), 1, + sym_expression, + STATE(1808), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74508,44 +60385,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -74561,158 +60438,78 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [557] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2204), 1, - aux_sym_preproc_def_token1, - ACTIONS(2206), 1, - aux_sym_preproc_if_token1, - ACTIONS(2210), 1, - sym_preproc_directive, - ACTIONS(2212), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1470), 1, - sym__declaration_specifiers, - ACTIONS(2208), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(589), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [665] = 22, + [1137] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, + ACTIONS(2027), 1, + anon_sym_SEMI, + STATE(659), 1, sym_string_literal, - STATE(809), 1, - sym_initializer_list, - STATE(835), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, + STATE(1002), 1, + sym_expression, + STATE(1748), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74721,37 +60518,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [771] = 23, + [1245] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2220), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(2029), 1, + anon_sym_COLON, + STATE(659), 1, sym_string_literal, - STATE(1245), 1, - sym__expression, - STATE(2163), 1, + STATE(1046), 1, + sym_expression, + STATE(1963), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74762,44 +60555,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -74815,198 +60608,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [879] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym___attribute__, - ACTIONS(2153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2156), 1, - anon_sym___declspec, - ACTIONS(2162), 1, - sym_primitive_type, - ACTIONS(2165), 1, - anon_sym_enum, - ACTIONS(2168), 1, - anon_sym_struct, - ACTIONS(2171), 1, - anon_sym_union, - ACTIONS(2222), 1, - aux_sym_preproc_def_token1, - ACTIONS(2225), 1, - aux_sym_preproc_if_token1, - ACTIONS(2231), 1, - sym_preproc_directive, - ACTIONS(2234), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1470), 1, - sym__declaration_specifiers, - ACTIONS(2228), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2159), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(565), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2144), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2147), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [987] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2236), 1, - aux_sym_preproc_def_token1, - ACTIONS(2238), 1, - aux_sym_preproc_if_token1, - ACTIONS(2240), 1, - aux_sym_preproc_if_token2, - ACTIONS(2244), 1, - sym_preproc_directive, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1468), 1, - sym__declaration_specifiers, - ACTIONS(2242), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(570), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [1095] = 23, + [1353] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2246), 1, + ACTIONS(2031), 1, anon_sym_SEMI, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1239), 1, - sym__expression, - STATE(2000), 1, + STATE(1017), 1, + sym_expression, + STATE(1831), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75017,44 +60640,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75070,76 +60693,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1203] = 23, + [1461] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2248), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1258), 1, - sym__expression, - STATE(2057), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(676), 1, + sym_initializer_list, + STATE(680), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75155,28 +60778,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1311] = 23, + [1569] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2250), 1, + ACTIONS(2037), 1, anon_sym_SEMI, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1240), 1, - sym__expression, - STATE(1998), 1, + STATE(1011), 1, + sym_expression, + STATE(1849), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75187,44 +60810,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75240,161 +60863,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1419] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 1, - sym_identifier, - ACTIONS(2136), 1, - aux_sym_preproc_if_token2, - ACTIONS(2150), 1, - anon_sym___attribute__, - ACTIONS(2153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2156), 1, - anon_sym___declspec, - ACTIONS(2162), 1, - sym_primitive_type, - ACTIONS(2165), 1, - anon_sym_enum, - ACTIONS(2168), 1, - anon_sym_struct, - ACTIONS(2171), 1, - anon_sym_union, - ACTIONS(2252), 1, - aux_sym_preproc_def_token1, - ACTIONS(2255), 1, - aux_sym_preproc_if_token1, - ACTIONS(2261), 1, - sym_preproc_directive, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1468), 1, - sym__declaration_specifiers, - ACTIONS(2258), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2159), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(570), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2144), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2147), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [1527] = 23, + [1677] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 1, - anon_sym_LBRACE, - ACTIONS(1775), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, + ACTIONS(2039), 1, + anon_sym_COLON, + STATE(659), 1, sym_string_literal, - STATE(921), 1, - sym__expression, - STATE(965), 1, - sym_initializer_list, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + STATE(1020), 1, + sym_expression, + STATE(1968), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75410,76 +60948,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1635] = 23, + [1785] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, + ACTIONS(2041), 1, + anon_sym_SEMI, + STATE(659), 1, sym_string_literal, - STATE(809), 1, - sym_initializer_list, - STATE(835), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, + STATE(1018), 1, + sym_expression, + STATE(1840), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75495,76 +61033,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1743] = 23, + [1893] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1524), 1, + ACTIONS(1385), 1, anon_sym_LBRACE, - ACTIONS(1915), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1248), 1, - sym__expression, - STATE(1882), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(676), 1, sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(679), 1, + sym_string_literal, + STATE(680), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75580,28 +61118,113 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1851] = 23, + [2001] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(2051), 1, + anon_sym_LBRACE, + STATE(692), 1, + sym_ms_call_modifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1120), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(259), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2109] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(2053), 1, anon_sym_SEMI, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1210), 1, - sym__expression, - STATE(2058), 1, + STATE(1034), 1, + sym_expression, + STATE(1789), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75612,44 +61235,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75665,29 +61288,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1959] = 23, + [2217] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2055), 1, + anon_sym_COLON, + STATE(659), 1, sym_string_literal, - STATE(1257), 1, - sym__expression, - STATE(1878), 1, - sym_initializer_list, + STATE(1005), 1, + sym_expression, + STATE(1851), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75697,44 +61320,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75750,28 +61373,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2067] = 23, + [2325] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2280), 1, - anon_sym_SEMI, - STATE(776), 1, + ACTIONS(2057), 1, + anon_sym_RPAREN, + STATE(659), 1, sym_string_literal, - STATE(1255), 1, - sym__expression, - STATE(2052), 1, + STATE(1024), 1, + sym_expression, + STATE(1844), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75782,44 +61405,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75835,28 +61458,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2175] = 23, + [2433] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2282), 1, - anon_sym_SEMI, - STATE(776), 1, + ACTIONS(2059), 1, + anon_sym_RPAREN, + STATE(659), 1, sym_string_literal, - STATE(1219), 1, - sym__expression, - STATE(2046), 1, + STATE(1039), 1, + sym_expression, + STATE(1872), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75867,44 +61490,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75920,76 +61543,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2283] = 23, + [2541] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2284), 1, - anon_sym_SEMI, - STATE(776), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1241), 1, - sym__expression, - STATE(2164), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(676), 1, + sym_initializer_list, + STATE(838), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76005,28 +61628,198 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2391] = 23, + [2649] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(2065), 1, + anon_sym_LBRACE, + STATE(693), 1, + sym_ms_call_modifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1106), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(115), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2757] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(678), 1, + sym_ms_call_modifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1118), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(370), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2865] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2286), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(2069), 1, + anon_sym_COLON, + STATE(659), 1, sym_string_literal, - STATE(1260), 1, - sym__expression, - STATE(2055), 1, + STATE(1023), 1, + sym_expression, + STATE(1788), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76037,44 +61830,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76090,28 +61883,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2499] = 23, + [2973] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2288), 1, - anon_sym_SEMI, - STATE(776), 1, + ACTIONS(2071), 1, + anon_sym_RPAREN, + STATE(659), 1, sym_string_literal, - STATE(1212), 1, - sym__expression, - STATE(2118), 1, + STATE(1032), 1, + sym_expression, + STATE(1847), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76122,44 +61915,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76175,73 +61968,78 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2607] = 22, + [3081] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 1, - anon_sym_LBRACE, - ACTIONS(1771), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(921), 1, - sym__expression, - STATE(965), 1, + STATE(1007), 1, + sym_expression, + STATE(1684), 1, sym_initializer_list, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76250,37 +62048,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [2713] = 23, + [3189] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2296), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(2073), 1, + anon_sym_SEMI, + STATE(659), 1, sym_string_literal, - STATE(1235), 1, - sym__expression, - STATE(2125), 1, + STATE(1013), 1, + sym_expression, + STATE(1837), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76291,44 +62085,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76344,28 +62138,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2821] = 23, + [3297] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2298), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(2075), 1, + anon_sym_COLON, + STATE(659), 1, sym_string_literal, - STATE(1253), 1, - sym__expression, - STATE(2128), 1, + STATE(1035), 1, + sym_expression, + STATE(1956), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76376,44 +62170,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76429,28 +62223,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2929] = 23, + [3405] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1524), 1, + ACTIONS(1385), 1, anon_sym_LBRACE, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1262), 1, - sym__expression, - STATE(1879), 1, + STATE(1027), 1, + sym_expression, + STATE(1725), 1, sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, @@ -76461,44 +62255,129 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3513] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1706), 1, + sym_identifier, + STATE(659), 1, + sym_string_literal, + STATE(1010), 1, + sym_expression, + STATE(1687), 1, + sym_initializer_list, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76514,28 +62393,113 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3037] = 23, + [3621] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(87), 1, anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + ACTIONS(2077), 1, + anon_sym_SEMI, + STATE(659), 1, + sym_string_literal, + STATE(1033), 1, + sym_expression, + STATE(1752), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3729] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(2079), 1, anon_sym_RPAREN, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1251), 1, - sym__expression, - STATE(2127), 1, + STATE(1025), 1, + sym_expression, + STATE(1809), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76546,44 +62510,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76599,73 +62563,78 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3145] = 22, + [3837] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1524), 1, + ACTIONS(1385), 1, anon_sym_LBRACE, - ACTIONS(1891), 1, + ACTIONS(1765), 1, + sym_identifier, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(809), 1, + STATE(676), 1, sym_initializer_list, - STATE(985), 1, - sym__expression, - ACTIONS(89), 2, + STATE(838), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76674,37 +62643,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3251] = 23, + [3945] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2306), 1, - anon_sym_SEMI, - STATE(776), 1, + ACTIONS(2081), 1, + anon_sym_RPAREN, + STATE(659), 1, sym_string_literal, - STATE(1246), 1, - sym__expression, - STATE(1971), 1, + STATE(1022), 1, + sym_expression, + STATE(1814), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76715,44 +62680,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76768,76 +62733,161 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3359] = 23, + [4053] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1524), 1, + ACTIONS(1385), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(809), 1, + STATE(676), 1, sym_initializer_list, - STATE(985), 1, - sym__expression, - ACTIONS(89), 2, + STATE(680), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4161] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_COLON, + STATE(659), 1, + sym_string_literal, + STATE(1041), 1, + sym_expression, + STATE(1874), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76853,73 +62903,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3467] = 23, + [4269] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2204), 1, - aux_sym_preproc_def_token1, - ACTIONS(2206), 1, - aux_sym_preproc_if_token1, - ACTIONS(2210), 1, - sym_preproc_directive, - ACTIONS(2308), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + ACTIONS(1716), 1, + anon_sym_const, + ACTIONS(1720), 1, + anon_sym_LPAREN2, + ACTIONS(1726), 1, + anon_sym_STAR, + ACTIONS(1733), 1, + anon_sym_EQ, + STATE(616), 1, + sym_string_literal, + STATE(782), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1470), 1, - sym__declaration_specifiers, - ACTIONS(2208), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, + ACTIONS(1741), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2085), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(565), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1729), 10, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -76927,65 +62941,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3575] = 23, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1737), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 11, + anon_sym_DASH, + anon_sym_PLUS, + 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, + ACTIONS(1718), 12, + 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_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [4359] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(2236), 1, - aux_sym_preproc_def_token1, - ACTIONS(2238), 1, - aux_sym_preproc_if_token1, - ACTIONS(2244), 1, - sym_preproc_directive, - ACTIONS(2310), 1, - aux_sym_preproc_if_token2, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + ACTIONS(2087), 1, + anon_sym_LBRACE, + STATE(696), 1, + sym_ms_call_modifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1468), 1, + STATE(1125), 1, sym__declaration_specifiers, - ACTIONS(2242), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(309), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76993,15 +63043,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(566), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -77023,73 +63064,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3683] = 22, + [4467] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1524), 1, + ACTIONS(1385), 1, anon_sym_LBRACE, - ACTIONS(1526), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(809), 1, + STATE(676), 1, sym_initializer_list, - STATE(835), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + STATE(679), 1, + sym_string_literal, + STATE(680), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77098,36 +63144,32 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3789] = 22, + [4575] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2316), 1, - anon_sym_COLON, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1272), 1, - sym__expression, + STATE(992), 1, + sym_expression, + STATE(1523), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77137,44 +63179,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -77190,71 +63232,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3894] = 21, + [4680] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, + ACTIONS(2093), 1, anon_sym_RBRACK, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77263,80 +63310,81 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3997] = 21, + [4785] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2320), 1, + ACTIONS(2095), 1, anon_sym_RBRACK, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77345,80 +63393,81 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4100] = 21, + [4890] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2322), 1, + ACTIONS(2097), 1, anon_sym_RBRACK, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77427,83 +63476,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4203] = 22, + [4995] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2324), 1, - anon_sym_COLON, - STATE(776), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2099), 1, + anon_sym_RBRACK, + STATE(659), 1, sym_string_literal, - STATE(1268), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -77519,74 +63564,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4308] = 22, + [5100] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2101), 1, + anon_sym_RBRACK, + STATE(659), 1, sym_string_literal, - STATE(1198), 1, - sym__expression, - STATE(1895), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -77602,71 +63647,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4413] = 21, + [5205] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2326), 1, + ACTIONS(2103), 1, anon_sym_RBRACK, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77675,80 +63725,81 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4516] = 21, + [5310] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2328), 1, + ACTIONS(2105), 1, anon_sym_RBRACK, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77757,83 +63808,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4619] = 22, + [5415] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2330), 1, - anon_sym_COLON, - STATE(776), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2107), 1, + anon_sym_RBRACK, + STATE(659), 1, sym_string_literal, - STATE(1267), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -77849,71 +63896,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4724] = 21, + [5520] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2332), 1, + ACTIONS(2109), 1, anon_sym_RBRACK, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77922,167 +63974,81 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4827] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_RPAREN, - ACTIONS(2095), 1, - anon_sym_LBRACK, - ACTIONS(2334), 1, - anon_sym_LPAREN2, - ACTIONS(2336), 1, - anon_sym_STAR, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, - sym__declaration_specifiers, - STATE(1653), 1, - sym_parameter_list, - STATE(1704), 1, - sym__abstract_declarator, - STATE(1743), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [4940] = 21, + [5625] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2338), 1, + ACTIONS(2111), 1, anon_sym_RBRACK, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78091,36 +64057,32 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5043] = 22, + [5730] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2340), 1, - anon_sym_COLON, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1284), 1, - sym__expression, + STATE(1044), 1, + sym_expression, + STATE(1879), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78130,44 +64092,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78183,27 +64145,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5148] = 22, + [5835] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2342), 1, - anon_sym_COLON, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1299), 1, - sym__expression, + STATE(1021), 1, + sym_expression, + STATE(1820), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78213,44 +64175,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78266,74 +64228,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5253] = 22, + [5940] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2344), 1, - anon_sym_COLON, - STATE(776), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1277), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(1048), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78349,71 +64309,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5358] = 21, + [6042] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - ACTIONS(2346), 1, - anon_sym_RBRACK, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(1068), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78422,83 +64385,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5461] = 22, + [6144] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - ACTIONS(2348), 1, - anon_sym_COLON, - STATE(776), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1292), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(945), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78514,71 +64471,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5566] = 21, + [6246] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - ACTIONS(2350), 1, - anon_sym_RBRACK, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(685), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78587,83 +64547,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5669] = 22, + [6348] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - ACTIONS(2352), 1, - anon_sym_COLON, - STATE(776), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1289), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(946), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78679,74 +64633,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5774] = 22, + [6450] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1230), 1, - sym__expression, - STATE(2145), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(778), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78762,71 +64714,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5879] = 21, + [6552] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - ACTIONS(2354), 1, - anon_sym_RBRACK, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(757), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78835,36 +64790,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5982] = 22, + [6654] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1226), 1, - sym__expression, - STATE(1966), 1, - sym_comma_expression, + STATE(959), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78874,44 +64823,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78927,69 +64876,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6087] = 20, + [6756] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(879), 1, - sym__expression, - ACTIONS(89), 2, + STATE(870), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78998,81 +64952,158 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6187] = 21, + [6858] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(842), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + STATE(1016), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6960] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, + sym_string_literal, + STATE(941), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -79088,72 +65119,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6289] = 21, + [7062] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1222), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(871), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -79169,69 +65200,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6391] = 20, + [7164] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(911), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, + STATE(956), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79240,78 +65276,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6491] = 20, + [7266] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(916), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, + STATE(1069), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79320,78 +65357,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6591] = 20, + [7368] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(917), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + STATE(800), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79400,78 +65438,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6691] = 20, + [7470] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(918), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, + STATE(685), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79480,78 +65519,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6791] = 20, + [7572] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2113), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(679), 1, sym_string_literal, - STATE(922), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + STATE(686), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79560,78 +65600,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6891] = 20, + [7674] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(924), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + STATE(818), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79640,78 +65681,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6991] = 20, + [7776] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(906), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, + STATE(1015), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79720,78 +65762,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7091] = 20, + [7878] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(679), 1, sym_string_literal, - STATE(907), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + STATE(684), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79800,78 +65843,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7191] = 20, + [7980] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(983), 1, - sym__expression, - ACTIONS(89), 2, + STATE(758), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79880,34 +65924,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7291] = 21, + [8082] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1162), 1, - sym__expression, + STATE(955), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -79917,44 +65957,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -79970,69 +66010,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7393] = 20, + [8184] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(896), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + STATE(760), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80041,78 +66086,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7493] = 20, + [8286] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(895), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + STATE(1043), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80121,81 +66167,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7593] = 21, + [8388] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2115), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1199), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(686), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80211,72 +66253,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7695] = 21, + [8490] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1291), 1, - sym__expression, - ACTIONS(89), 2, + STATE(684), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80292,72 +66334,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7797] = 21, + [8592] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1160), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(936), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80373,69 +66415,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7899] = 20, + [8694] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2356), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(843), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + STATE(695), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80444,81 +66491,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7999] = 21, + [8796] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1157), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(689), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80534,69 +66577,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8101] = 20, + [8898] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(893), 1, - sym__expression, + STATE(1057), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80605,34 +66653,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8201] = 21, + [9000] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1270), 1, - sym__expression, + STATE(1066), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -80642,44 +66686,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80695,72 +66739,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8303] = 21, + [9102] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1153), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(1012), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80776,25 +66820,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8405] = 21, + [9204] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1152), 1, - sym__expression, + STATE(1055), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -80804,44 +66848,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80857,25 +66901,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8507] = 21, + [9306] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1150), 1, - sym__expression, + STATE(1065), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -80885,44 +66929,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80938,72 +66982,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8609] = 21, + [9408] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1148), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(950), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -81019,72 +67063,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8711] = 21, + [9510] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(837), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(754), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -81100,72 +67144,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8813] = 21, + [9612] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1147), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(841), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -81181,69 +67225,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8915] = 20, + [9714] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(987), 1, - sym__expression, - ACTIONS(89), 2, + STATE(685), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81252,152 +67301,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9015] = 14, + [9816] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1955), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1961), 1, - anon_sym_STAR, - ACTIONS(1971), 1, - anon_sym_EQ, - STATE(774), 1, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + STATE(659), 1, sym_string_literal, - STATE(1079), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1964), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2358), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1967), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 11, + STATE(998), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1953), 12, - 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_QMARK, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [9103] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(989), 1, - sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81406,78 +67382,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9203] = 20, + [9918] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(990), 1, - sym__expression, - ACTIONS(89), 2, + STATE(685), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81486,78 +67463,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9303] = 20, + [10020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(991), 1, - sym__expression, - ACTIONS(89), 2, + STATE(815), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81566,78 +67544,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9403] = 20, + [10122] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(891), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + STATE(748), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81646,78 +67625,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9503] = 20, + [10224] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(992), 1, - sym__expression, - ACTIONS(89), 2, + STATE(802), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81726,78 +67706,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9603] = 20, + [10326] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(993), 1, - sym__expression, - ACTIONS(89), 2, + STATE(942), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81806,78 +67787,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9703] = 20, + [10428] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(995), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, + STATE(689), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81886,78 +67868,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9803] = 20, + [10530] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(972), 1, - sym__expression, - ACTIONS(89), 2, + STATE(689), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81966,78 +67949,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9903] = 20, + [10632] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(997), 1, - sym__expression, - ACTIONS(89), 2, + STATE(695), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82046,78 +68030,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10003] = 20, + [10734] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(1001), 1, - sym__expression, - ACTIONS(89), 2, + STATE(765), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82126,78 +68111,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10103] = 20, + [10836] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(999), 1, - sym__expression, - ACTIONS(89), 2, + STATE(888), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82206,78 +68192,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10203] = 20, + [10938] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2117), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1002), 1, - sym__expression, - ACTIONS(89), 2, + STATE(830), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82286,81 +68273,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10303] = 21, + [11040] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1206), 1, - sym__expression, - ACTIONS(89), 2, + STATE(809), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -82376,72 +68359,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10405] = 21, + [11142] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1149), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(689), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -82457,72 +68440,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10507] = 21, + [11244] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1163), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(766), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -82538,69 +68521,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10609] = 20, + [11346] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2360), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1005), 1, - sym__expression, - ACTIONS(89), 2, + STATE(801), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82609,81 +68597,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10709] = 21, + [11448] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1220), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, + STATE(963), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -82699,69 +68683,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10811] = 20, + [11550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(915), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, + STATE(1071), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82770,78 +68759,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10911] = 20, + [11652] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2119), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(914), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + STATE(830), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82850,81 +68840,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11011] = 21, + [11754] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1271), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(684), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -82940,69 +68926,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11113] = 20, + [11856] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(831), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + STATE(888), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83011,81 +69002,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11213] = 21, + [11958] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(1202), 1, - sym__expression, - ACTIONS(89), 2, + STATE(770), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -83101,69 +69088,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11315] = 20, + [12060] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2121), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(842), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, + STATE(686), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83172,78 +69164,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11415] = 20, + [12162] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(831), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, + STATE(684), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83252,78 +69245,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11515] = 20, + [12264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(887), 1, - sym__expression, - ACTIONS(89), 2, + STATE(939), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83332,78 +69326,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11615] = 20, + [12366] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2123), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(884), 1, - sym__expression, - ACTIONS(89), 2, + STATE(686), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83412,78 +69407,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11715] = 20, + [12468] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(894), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + STATE(871), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83492,34 +69488,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11815] = 21, + [12570] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1155), 1, - sym__expression, + STATE(966), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -83529,44 +69521,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -83582,72 +69574,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11917] = 21, + [12672] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1274), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(811), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -83663,69 +69655,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12019] = 20, + [12774] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(994), 1, - sym__expression, - ACTIONS(89), 2, + STATE(840), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83734,78 +69731,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12119] = 20, + [12876] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2362), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(912), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + STATE(831), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83814,78 +69812,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12219] = 20, + [12978] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(679), 1, sym_string_literal, - STATE(908), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + STATE(947), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83894,81 +69893,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12319] = 21, + [13080] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1295), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(948), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -83984,72 +69979,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12421] = 21, + [13182] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1201), 1, - sym__expression, - ACTIONS(89), 2, + STATE(868), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84065,72 +70060,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12523] = 21, + [13284] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1209), 1, - sym__expression, - ACTIONS(89), 2, + STATE(849), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84146,72 +70141,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12625] = 21, + [13386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1193), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(848), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84227,72 +70222,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12727] = 21, + [13488] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(1167), 1, - sym__expression, - ACTIONS(1779), 2, + STATE(841), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84308,72 +70303,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12829] = 21, + [13590] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1250), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + STATE(846), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84389,25 +70384,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12931] = 21, + [13692] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1282), 1, - sym__expression, + STATE(964), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -84417,44 +70412,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84470,72 +70465,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13033] = 21, + [13794] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(999), 1, - sym__expression, - ACTIONS(89), 2, + STATE(845), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84551,69 +70546,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13135] = 20, + [13896] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, - ACTIONS(89), 2, + STATE(843), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84622,81 +70622,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13235] = 21, + [13998] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(1214), 1, - sym__expression, - ACTIONS(89), 2, + STATE(951), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84712,72 +70708,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13337] = 21, + [14100] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(1002), 1, - sym__expression, - ACTIONS(89), 2, + STATE(944), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84793,72 +70789,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13439] = 21, + [14202] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2364), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(1005), 1, - sym__expression, - ACTIONS(89), 2, + STATE(776), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84874,69 +70870,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13541] = 20, + [14304] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(679), 1, sym_string_literal, - STATE(920), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + STATE(949), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84945,34 +70946,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13641] = 21, + [14406] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1285), 1, - sym__expression, + STATE(957), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -84982,44 +70979,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85035,72 +71032,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13743] = 21, + [14508] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(1169), 1, - sym__expression, - ACTIONS(1779), 2, + STATE(1062), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85116,72 +71113,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13845] = 21, + [14610] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1286), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, + STATE(967), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85197,72 +71194,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13947] = 21, + [14712] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1137), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, + STATE(1031), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85278,72 +71275,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14049] = 21, + [14814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1136), 1, - sym__expression, - ACTIONS(89), 2, + STATE(1040), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85359,72 +71356,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14151] = 21, + [14916] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(837), 1, - sym__expression, - ACTIONS(89), 2, + STATE(842), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85440,25 +71437,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14253] = 21, + [15018] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1224), 1, - sym__expression, + STATE(960), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -85468,44 +71465,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85521,72 +71518,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14355] = 21, + [15120] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1135), 1, - sym__expression, - ACTIONS(89), 2, + STATE(839), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85602,72 +71599,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14457] = 21, + [15222] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1133), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, + STATE(1000), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85683,72 +71680,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14559] = 21, + [15324] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(1181), 1, - sym__expression, - ACTIONS(1779), 2, + STATE(1038), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85764,72 +71761,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14661] = 21, + [15426] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(1134), 1, - sym__expression, - ACTIONS(89), 2, + STATE(775), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85845,72 +71842,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14763] = 21, + [15528] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2043), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(679), 1, sym_string_literal, - STATE(1132), 1, - sym__expression, - ACTIONS(89), 2, + STATE(940), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85926,72 +71923,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14865] = 21, + [15630] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1131), 1, - sym__expression, - ACTIONS(89), 2, + STATE(1050), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86007,72 +72004,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14967] = 21, + [15732] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1130), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, + STATE(1056), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86088,72 +72085,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15069] = 21, + [15834] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(915), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + STATE(961), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86169,72 +72166,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15171] = 21, + [15936] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1236), 1, - sym__expression, - ACTIONS(89), 2, + STATE(1006), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86250,72 +72247,153 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15273] = 21, + [16038] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + STATE(659), 1, + sym_string_literal, + STATE(958), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16140] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1141), 1, - sym__expression, - ACTIONS(89), 2, + STATE(784), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86331,72 +72409,153 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15375] = 21, + [16242] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(908), 1, - sym__expression, - ACTIONS(1779), 2, + STATE(965), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16344] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + STATE(659), 1, + sym_string_literal, + STATE(1001), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86412,72 +72571,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15477] = 21, + [16446] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(994), 1, - sym__expression, - ACTIONS(89), 2, + STATE(1026), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86493,72 +72652,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15579] = 21, + [16548] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1142), 1, - sym__expression, - ACTIONS(89), 2, + STATE(1042), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86574,72 +72733,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15681] = 21, + [16650] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1215), 1, - sym__expression, - ACTIONS(89), 2, + STATE(814), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86655,72 +72814,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15783] = 21, + [16752] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1273), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(813), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86736,72 +72895,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15885] = 21, + [16854] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1218), 1, - sym__expression, - ACTIONS(89), 2, + STATE(1045), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86817,69 +72976,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15987] = 20, + [16956] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(888), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + STATE(850), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86888,34 +73052,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16087] = 21, + [17058] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(831), 1, - sym__expression, + STATE(1036), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -86925,44 +73085,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86978,69 +73138,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16189] = 20, + [17160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(832), 1, - sym__expression, + STATE(812), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87049,81 +73214,77 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16289] = 21, + [17262] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2366), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(659), 1, sym_string_literal, - STATE(912), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + STATE(996), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -87139,152 +73300,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16391] = 20, + [17364] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(876), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, + STATE(1058), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16491] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(1138), 1, - sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2276), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -87300,72 +73381,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16593] = 21, + [17466] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1143), 1, - sym__expression, - ACTIONS(89), 2, + STATE(1030), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -87381,72 +73462,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16695] = 21, + [17568] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(659), 1, sym_string_literal, - STATE(1140), 1, - sym__expression, - ACTIONS(89), 2, + STATE(1037), 1, + sym_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, + STATE(672), 16, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -87462,8217 +73543,506 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16797] = 20, + [17670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(2125), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2368), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(617), 2, sym_string_literal, - STATE(843), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16897] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2370), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(843), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1917), 2, + ACTIONS(2129), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2276), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2127), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, + anon_sym_DASH_GT, + [17741] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2131), 1, + sym_identifier, + STATE(618), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16999] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(909), 1, - sym__expression, - ACTIONS(1765), 2, + ACTIONS(2135), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2294), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2133), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, + anon_sym_DASH_GT, + [17812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2137), 1, + sym_identifier, + STATE(618), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2144), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17099] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(875), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, + ACTIONS(2142), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2218), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2140), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, + anon_sym_DASH_GT, + [17883] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17199] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1159), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1724), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(1718), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17301] = 21, + anon_sym_DASH_GT, + [17951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1298), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2147), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2149), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17403] = 20, + [18014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(913), 1, - sym__expression, - ACTIONS(1765), 2, + ACTIONS(2151), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2294), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2153), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17503] = 20, + [18077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(842), 1, - sym__expression, - ACTIONS(25), 2, + ACTIONS(2155), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(89), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, + anon_sym_DOT, + sym_identifier, + ACTIONS(2157), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_SEMI, + anon_sym_LBRACK_LBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17603] = 21, + anon_sym_DASH_GT, + [18139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1171), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(2159), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2270), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, + sym_identifier, + ACTIONS(2161), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_SEMI, + anon_sym_LBRACK_LBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17705] = 21, + anon_sym_DASH_GT, + [18201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1173), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17807] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1175), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17909] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1176), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18011] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1177), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18113] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1178), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18215] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1179), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18317] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1182), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18419] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(906), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18521] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1168), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18623] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1265), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18725] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(1172), 1, - sym__expression, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2270), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18827] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(889), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18927] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(837), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19027] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1194), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19129] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(831), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2276), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19231] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(1208), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19333] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(903), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19433] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(1300), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19535] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(900), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19635] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1294), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19737] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - ACTIONS(2372), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(843), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19839] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(877), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19939] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(878), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20039] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1196), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20141] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(832), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20241] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(1261), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20343] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(1207), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20445] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(842), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2276), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20547] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(1249), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20649] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(898), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20749] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(897), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20849] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1197), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20951] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(881), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [21051] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(886), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [21151] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(885), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [21251] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(837), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [21351] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(923), 1, - sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2294), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(928), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [21451] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(883), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [21551] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2374), 1, - anon_sym_LBRACE, - STATE(861), 1, - sym_ms_call_modifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1496), 1, - sym__declaration_specifiers, - STATE(205), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [21652] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2376), 1, - anon_sym_LBRACE, - STATE(863), 1, - sym_ms_call_modifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1501), 1, - sym__declaration_specifiers, - STATE(153), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [21753] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - sym_identifier, - STATE(773), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2382), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2380), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21824] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2384), 1, - anon_sym_LBRACE, - STATE(853), 1, - sym_ms_call_modifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1497), 1, - sym__declaration_specifiers, - STATE(469), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [21925] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2386), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_ms_call_modifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1488), 1, - sym__declaration_specifiers, - STATE(361), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22026] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2388), 1, - anon_sym_LBRACE, - STATE(855), 1, - sym_ms_call_modifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1484), 1, - sym__declaration_specifiers, - STATE(395), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22127] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2390), 1, - sym_identifier, - STATE(773), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2397), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2395), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2393), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22198] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 1, - sym_identifier, - STATE(769), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2404), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2402), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22269] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1959), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(1953), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22337] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1959), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(1953), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2408), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_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, - [22468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2410), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2412), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_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, - [22531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2414), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2416), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2420), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2424), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2426), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2428), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2430), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2432), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2434), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2436), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2440), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [22965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2442), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2444), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2446), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2448), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2450), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2452), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_LBRACK_LBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - 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, - ACTIONS(1911), 30, - anon_sym_DASH, - anon_sym_PLUS, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - 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, - ACTIONS(1907), 30, - anon_sym_DASH, - anon_sym_PLUS, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23269] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2456), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - 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, - ACTIONS(2454), 30, - anon_sym_DASH, - anon_sym_PLUS, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2456), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23387] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(372), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23479] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(374), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(816), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2458), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2460), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2464), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23687] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2466), 1, - sym_identifier, - ACTIONS(2468), 1, - anon_sym_RPAREN, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, - sym__declaration_specifiers, - STATE(1690), 1, - sym_variadic_parameter, - STATE(1743), 1, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2472), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2476), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2478), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2480), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23955] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(141), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2484), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24105] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(366), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(793), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24197] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(474), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(825), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24289] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(400), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(807), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2488), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24439] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(383), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2492), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2496), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2500), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2504), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24763] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(380), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(828), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24855] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(456), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24947] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(214), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(821), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2508), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25097] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(393), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25189] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(229), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25281] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(143), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(801), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2510), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2512), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2514), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2516), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25489] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(226), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25581] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_RPAREN, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, - sym__declaration_specifiers, - STATE(1743), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25673] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(134), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2518), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2520), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25823] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(477), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25915] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(146), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(823), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [26007] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(480), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(813), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [26099] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(364), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [26191] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(230), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(817), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [26283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2522), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2524), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26341] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2526), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2528), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_SEMI, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - [26406] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2536), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2538), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_SEMI, - 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, - [26473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2544), 33, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26530] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, - sym__declaration_specifiers, - STATE(1842), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [26619] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2546), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2548), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_SEMI, - 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, - [26686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 16, + ACTIONS(2163), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95687,9 +74057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, sym_identifier, - ACTIONS(2552), 33, + ACTIONS(2165), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95704,9 +74079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -95721,24 +74097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [26743] = 8, + [18263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 16, + ACTIONS(2167), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95753,15 +74116,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, sym_identifier, - ACTIONS(2556), 26, + ACTIONS(2169), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -95769,7 +74138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -95782,161 +74154,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26810] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_EQ, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2560), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 14, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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, - sym_identifier, - ACTIONS(1953), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [26875] = 3, + [18325] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - 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, + ACTIONS(2181), 1, anon_sym___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2564), 33, + ACTIONS(2184), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2187), 1, + anon_sym___declspec, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(2190), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2173), 5, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - 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, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26932] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2566), 1, - sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, - sym__declaration_specifiers, - STATE(1842), 1, - sym_parameter_declaration, - STATE(1876), 1, - sym_variadic_parameter, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, + STATE(626), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95944,7 +74185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(2175), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95954,7 +74195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(2178), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95965,10 +74206,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27023] = 3, + ACTIONS(2171), 17, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [18403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 16, + ACTIONS(2193), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95983,9 +74242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, sym_identifier, - ACTIONS(2570), 33, + ACTIONS(2195), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -96000,9 +74264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -96017,24 +74282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [27080] = 8, + [18465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2572), 16, + ACTIONS(2197), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96049,15 +74301,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, sym_identifier, - ACTIONS(2574), 26, + ACTIONS(2199), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -96065,7 +74323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -96078,22 +74339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27147] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2576), 16, + anon_sym_DASH_GT, + [18527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2201), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96108,15 +74360,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, sym_identifier, - ACTIONS(2578), 26, + ACTIONS(2203), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -96124,130 +74382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - 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, - [27214] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2580), 1, - sym_identifier, - ACTIONS(2589), 1, - anon_sym___attribute__, - ACTIONS(2592), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2595), 1, - anon_sym___declspec, - ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2603), 1, - sym_primitive_type, - ACTIONS(2606), 1, - anon_sym_enum, - ACTIONS(2609), 1, - anon_sym_struct, - ACTIONS(2612), 1, - anon_sym_union, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2600), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2583), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2586), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [27303] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2615), 1, - sym_identifier, - STATE(846), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2382), 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(2380), 27, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -96261,23 +74400,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [27365] = 6, + [18589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - sym_identifier, - STATE(846), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2620), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2395), 13, + ACTIONS(2205), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96290,131 +74418,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2393), 27, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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___attribute__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, - anon_sym_DASH_GT, - [27427] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2623), 1, sym_identifier, - STATE(845), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2404), 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(2402), 27, + ACTIONS(2207), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27489] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(1953), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96423,55 +74441,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27553] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(847), 1, - sym_string_literal, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1959), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(1953), 27, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -96484,20 +74459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [27612] = 5, + [18651] = 3, ACTIONS(3), 1, - sym_comment, - STATE(847), 1, - sym_string_literal, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1959), 14, + sym_comment, + ACTIONS(2209), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96510,13 +74477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, sym_identifier, - ACTIONS(1953), 27, + ACTIONS(2211), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96524,7 +74499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -96538,33 +74518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [27671] = 7, + [18713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - anon_sym_EQ, - STATE(847), 1, - sym_string_literal, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2627), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 13, + ACTIONS(2213), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96577,12 +74536,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, sym_identifier, - ACTIONS(1953), 17, + ACTIONS(2215), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96590,19 +74558,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [27734] = 5, + [18775] = 22, ACTIONS(3), 1, sym_comment, - STATE(852), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(123), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1103), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(635), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2633), 9, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96612,81 +74644,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2629), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2631), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - 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, - [27793] = 17, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [18874] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1777), 1, + anon_sym_RPAREN, + ACTIONS(1849), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1517), 1, + STATE(1139), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1530), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96715,43 +74732,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27875] = 17, + [18973] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(131), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1508), 1, + STATE(1103), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(651), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96780,43 +74809,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27957] = 17, + [19072] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(118), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1522), 1, + STATE(1103), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(651), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96845,43 +74886,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28039] = 17, + [19171] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(300), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1103), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(651), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19270] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(137), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1103), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(636), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19369] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(362), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1504), 1, + STATE(1103), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(651), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96910,145 +75117,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28121] = 3, + [19468] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2410), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(2412), 32, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [28175] = 3, + STATE(262), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1103), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(647), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19567] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(2408), 32, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [28229] = 17, + STATE(276), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1103), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(651), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19666] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(368), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1527), 1, + STATE(1103), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(645), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97077,43 +75348,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28311] = 17, + [19765] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(302), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1507), 1, + STATE(1103), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(651), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97142,43 +75425,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28393] = 17, + [19864] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(280), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1533), 1, + STATE(1103), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(637), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97207,43 +75502,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28475] = 17, + [19963] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(361), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1505), 1, + STATE(1103), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(651), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97272,43 +75579,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28557] = 17, + [20062] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2217), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + ACTIONS(2219), 1, + anon_sym_RPAREN, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1532), 1, + STATE(1139), 1, sym__declaration_specifiers, + STATE(1507), 1, + sym_variadic_parameter, + STATE(1530), 1, + sym_parameter_declaration, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97337,43 +75657,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28639] = 17, + [20163] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(278), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1511), 1, + STATE(1103), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(651), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97402,151 +75734,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28721] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(1979), 1, - anon_sym_COLON, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(1953), 15, - 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [28784] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(1973), 1, - anon_sym_COLON, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(1953), 15, - 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [28847] = 16, + [20262] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1290), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(1062), 1, - sym__type_specifier, - STATE(1080), 1, + STATE(372), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, + STATE(1103), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(639), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(872), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97575,242 +75811,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28926] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(1977), 1, - anon_sym_COLON, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(1953), 15, - 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [28989] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(1983), 1, - anon_sym_COLON, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(1953), 15, - 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29052] = 8, + [20361] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(2636), 1, - anon_sym_COLON, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(1953), 15, - 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_LT_EQ, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29115] = 8, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(301), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1103), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(641), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [20460] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(1985), 1, - anon_sym_COLON, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(1953), 15, - 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29178] = 9, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(267), 1, + sym_compound_statement, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1103), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(643), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [20559] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(2221), 1, + sym_identifier, + ACTIONS(2230), 1, anon_sym___attribute__, - ACTIONS(2651), 1, + ACTIONS(2233), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2654), 1, + ACTIONS(2236), 1, anon_sym___declspec, - ACTIONS(2640), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(872), 7, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2247), 1, + sym_primitive_type, + ACTIONS(2250), 1, + anon_sym_enum, + ACTIONS(2253), 1, + anon_sym_struct, + ACTIONS(2256), 1, + anon_sym_union, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1103), 1, + sym__declaration_specifiers, + ACTIONS(2244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(651), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2241), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97818,7 +76019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2642), 9, + ACTIONS(2224), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97828,7 +76029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2645), 10, + ACTIONS(2227), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -97839,28 +76040,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2638), 11, - anon_sym___based, + [20655] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1139), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1720), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [20751] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, sym_primitive_type, + ACTIONS(53), 1, anon_sym_enum, + ACTIONS(55), 1, anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2259), 1, sym_identifier, - [29243] = 3, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1139), 1, + sym__declaration_specifiers, + STATE(1691), 1, + sym_variadic_parameter, + STATE(1720), 1, + sym_parameter_declaration, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [20849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 19, + ACTIONS(2263), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_number_literal, @@ -97874,406 +76216,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2657), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [29296] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(1981), 1, - anon_sym_COLON, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(1953), 15, - 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_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29359] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2556), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [29427] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 9, - aux_sym_preproc_elif_token1, - 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(2556), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [29493] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2556), 21, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - sym_identifier, - [29565] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2556), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - sym_identifier, - [29639] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2261), 30, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2556), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - sym_identifier, - [29715] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2675), 1, - anon_sym_EQ, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2677), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 13, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [20908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2261), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98286,9 +76264,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(1953), 14, + sym_identifier, + ACTIONS(2263), 34, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98296,62 +76283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [29775] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2554), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98363,289 +76300,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [29853] = 20, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [20967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(1700), 21, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2685), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2687), 1, - anon_sym_AMP_AMP, - ACTIONS(2689), 1, - anon_sym_PIPE, - ACTIONS(2691), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + 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, + ACTIONS(1698), 30, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2683), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2681), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [29939] = 18, + [21026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2267), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2687), 1, - anon_sym_AMP_AMP, - ACTIONS(2689), 1, - anon_sym_PIPE, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2663), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2265), 42, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - [30021] = 20, + [21085] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2685), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2687), 1, - anon_sym_AMP_AMP, - ACTIONS(2689), 1, - anon_sym_PIPE, - ACTIONS(2691), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2276), 1, + anon_sym_static, + STATE(700), 1, + sym_alignas_qualifier, + ACTIONS(2279), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(658), 2, + sym_type_qualifier, + aux_sym_array_declarator_repeat1, + ACTIONS(2273), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2269), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2695), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2693), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [30107] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, + ACTIONS(2271), 19, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2689), 1, - anon_sym_PIPE, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - sym_identifier, - [30187] = 9, + 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, + [21154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2663), 3, + ACTIONS(2282), 1, + sym_identifier, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2286), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 11, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -98653,19 +76502,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2556), 23, + anon_sym_DOT, + ACTIONS(2284), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98677,128 +76532,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30251] = 20, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(1704), 21, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2685), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2687), 1, - anon_sym_AMP_AMP, - ACTIONS(2689), 1, - anon_sym_PIPE, - ACTIONS(2691), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + 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, + ACTIONS(1702), 30, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2699), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2697), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [30337] = 20, + [21278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2699), 1, - anon_sym_EQ, - ACTIONS(2705), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2707), 1, - anon_sym_AMP_AMP, - ACTIONS(2709), 1, - anon_sym_PIPE, - ACTIONS(2711), 1, - anon_sym_CARET, - ACTIONS(2713), 1, - anon_sym_AMP, - ACTIONS(2723), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2288), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2697), 16, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2290), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_SEMI, - anon_sym___attribute__, 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, @@ -98809,28 +76643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30422] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2703), 3, + anon_sym_DASH_GT, + [21336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2292), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -98838,10 +76663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2556), 23, + anon_sym_DOT, + sym_identifier, + ACTIONS(2294), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -98849,8 +76683,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -98863,10 +76698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30485] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 14, + ACTIONS(2296), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98879,14 +76718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2552), 29, + sym_identifier, + ACTIONS(2298), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98894,8 +76737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_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, @@ -98910,30 +76756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_identifier, - [30536] = 10, + [21452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2300), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -98941,10 +76773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2556), 23, + anon_sym_DOT, + sym_identifier, + ACTIONS(2302), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -98952,8 +76793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -98966,61 +76808,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30601] = 20, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2683), 1, - anon_sym_EQ, - ACTIONS(2705), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2707), 1, - anon_sym_AMP_AMP, - ACTIONS(2709), 1, + ACTIONS(2304), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2711), 1, anon_sym_CARET, - ACTIONS(2713), 1, anon_sym_AMP, - ACTIONS(2723), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2681), 16, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2306), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_SEMI, - anon_sym___attribute__, 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, @@ -99031,41 +76863,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30686] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + anon_sym_DASH_GT, + [21568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2308), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 6, 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___attribute__, anon_sym_EQ, - ACTIONS(2556), 23, + anon_sym_DOT, + sym_identifier, + ACTIONS(2310), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -99073,8 +76903,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -99087,61 +76918,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30753] = 20, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2695), 1, - anon_sym_EQ, - ACTIONS(2705), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2707), 1, - anon_sym_AMP_AMP, - ACTIONS(2709), 1, + ACTIONS(2312), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2711), 1, anon_sym_CARET, - ACTIONS(2713), 1, anon_sym_AMP, - ACTIONS(2723), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2693), 16, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2314), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + 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_SEMI, - anon_sym___attribute__, 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, @@ -99152,52 +76973,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30838] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + anon_sym_DASH_GT, + [21684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2717), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 4, 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___attribute__, anon_sym_EQ, - ACTIONS(2556), 21, + anon_sym_DOT, + sym_identifier, + ACTIONS(1718), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -99210,53 +77028,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30909] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + anon_sym_DASH_GT, + [21742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2316), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 4, 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___attribute__, anon_sym_EQ, - ACTIONS(2556), 19, + anon_sym_DOT, + sym_identifier, + ACTIONS(2318), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -99269,54 +77083,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30982] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + anon_sym_DASH_GT, + [21800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2320), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2554), 3, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 19, + anon_sym_DOT, + sym_identifier, + ACTIONS(2322), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -99329,55 +77138,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31057] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2711), 1, - anon_sym_CARET, - ACTIONS(2713), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2701), 2, + anon_sym_DASH_GT, + [21858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 19, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2326), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -99390,104 +77193,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31134] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(1724), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2725), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [31185] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2709), 1, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2711), 1, anon_sym_CARET, - ACTIONS(2713), 1, anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 19, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(1718), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -99500,23 +77248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31264] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_EQ, - ACTIONS(2560), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 13, + ACTIONS(2328), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -99530,8 +77268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 19, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2330), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -99543,17 +77287,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_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_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [31319] = 3, + [22032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 14, + ACTIONS(2332), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99566,14 +77323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2544), 29, + sym_identifier, + ACTIONS(2334), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99581,8 +77342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_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, @@ -99597,58 +77361,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_identifier, - [31370] = 18, + [22090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2707), 1, - anon_sym_AMP_AMP, - ACTIONS(2709), 1, + ACTIONS(2336), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2711), 1, anon_sym_CARET, - ACTIONS(2713), 1, anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 18, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2338), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -99661,10 +77413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31451] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [22148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 14, + ACTIONS(2340), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99677,14 +77433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2564), 29, + sym_identifier, + ACTIONS(2342), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99692,8 +77452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_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, @@ -99708,11 +77471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_identifier, - [31502] = 3, + [22206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 14, + ACTIONS(2344), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99725,14 +77488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2570), 29, + sym_identifier, + ACTIONS(2346), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99740,8 +77507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_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, @@ -99756,23 +77526,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + [22264] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, sym_identifier, - [31553] = 8, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1228), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [22353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2554), 13, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2286), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99786,17 +77622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2556), 22, + sym_identifier, + ACTIONS(2284), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99808,29 +77648,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31613] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22414] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 3, + ACTIONS(2348), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -99838,18 +77681,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2556), 22, + sym_identifier, + ACTIONS(2350), 26, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99861,23 +77711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31675] = 8, + [22481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2572), 13, + ACTIONS(2360), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99890,18 +77728,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2574), 22, + sym_identifier, + ACTIONS(2362), 33, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99913,50 +77761,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31735] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, + [22538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2364), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 6, 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___attribute__, anon_sym_EQ, - ACTIONS(2556), 22, + sym_identifier, + ACTIONS(2366), 33, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99968,13 +77815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31801] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22595] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(2368), 1, anon_sym_EQ, - ACTIONS(1975), 10, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2370), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99985,7 +77843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1724), 14, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99998,9 +77857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 19, + sym_identifier, + ACTIONS(1718), 18, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100008,89 +77871,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [31855] = 13, + [22660] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2737), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2556), 20, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(2372), 16, aux_sym_preproc_elif_token1, - 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, - sym_identifier, - [31925] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2576), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100103,18 +77906,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2578), 22, + sym_identifier, + ACTIONS(2374), 26, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100126,30 +77936,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31985] = 10, + [22727] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, + ACTIONS(2376), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -100157,18 +77965,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2556), 22, + sym_identifier, + ACTIONS(2378), 26, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100180,23 +77995,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32049] = 8, + [22794] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2536), 13, + ACTIONS(2380), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100209,18 +78024,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2538), 22, + sym_identifier, + ACTIONS(2382), 26, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100232,20 +78054,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [22861] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, sym_identifier, - [32109] = 7, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1225), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [22950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2526), 13, + ACTIONS(2384), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100258,18 +78141,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2528), 24, + sym_identifier, + ACTIONS(2386), 33, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100283,112 +78176,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_identifier, - [32167] = 14, + anon_sym_DOT, + anon_sym_DASH_GT, + [23007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, + ACTIONS(2388), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2556), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - sym_identifier, - [32239] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2554), 3, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2737), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 18, + sym_identifier, + ACTIONS(2390), 28, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100400,55 +78234,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32313] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - STATE(964), 1, - sym_argument_list, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, + [23072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2392), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 18, + 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___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2394), 33, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, 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_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100460,60 +78286,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23129] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, sym_identifier, - [32389] = 20, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1211), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23218] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2683), 1, - anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1229), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23307] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1226), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23396] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1218), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23485] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2753), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2755), 1, - anon_sym_AMP_AMP, - ACTIONS(2757), 1, - anon_sym_PIPE, - ACTIONS(2759), 1, - anon_sym_QMARK, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, + ACTIONS(2396), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2681), 15, + 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___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2398), 26, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100524,60 +78629,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [23552] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1227), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23641] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1219), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23730] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(715), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(626), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + 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, + ACTIONS(2400), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_static, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [32473] = 20, + [23872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2695), 1, - anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2406), 19, anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2753), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2755), 1, - anon_sym_AMP_AMP, - ACTIONS(2757), 1, - anon_sym_PIPE, - ACTIONS(2759), 1, - anon_sym_QMARK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, + 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, + ACTIONS(2404), 29, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2693), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym___extension__, + anon_sym_static, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [23928] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_EQ, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100588,23 +78967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32557] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2546), 13, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100617,471 +78980,709 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2548), 22, + ACTIONS(1718), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [32617] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2757), 1, - anon_sym_PIPE, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, + [23992] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(726), 1, + sym_field_declaration_list, + STATE(779), 1, + sym_attribute_specifier, + ACTIONS(2410), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 18, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2408), 36, + anon_sym___extension__, + anon_sym_extern, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [24055] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_field_declaration_list, + STATE(741), 1, + sym_attribute_specifier, + ACTIONS(2416), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2414), 36, + anon_sym___extension__, + anon_sym_extern, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [32695] = 20, + [24118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, - anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2420), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2731), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2418), 40, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2753), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2755), 1, - anon_sym_AMP_AMP, - ACTIONS(2757), 1, - anon_sym_PIPE, - ACTIONS(2759), 1, - anon_sym_QMARK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24173] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(724), 1, + sym_field_declaration_list, + STATE(735), 1, + sym_attribute_specifier, + ACTIONS(2424), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2697), 15, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2422), 36, + anon_sym___extension__, + anon_sym_extern, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [24236] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(717), 1, + sym_field_declaration_list, + STATE(762), 1, + sym_attribute_specifier, + ACTIONS(2428), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2426), 36, + anon_sym___extension__, + anon_sym_extern, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [24299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2400), 40, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [32779] = 18, + [24354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2406), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2755), 1, - anon_sym_AMP_AMP, - ACTIONS(2757), 1, - anon_sym_PIPE, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 17, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2404), 40, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [32859] = 3, + [24409] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 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(2420), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(730), 1, + sym_field_declaration_list, + STATE(737), 1, + sym_attribute_specifier, + ACTIONS(2432), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2430), 36, + anon_sym___extension__, + anon_sym_extern, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [32908] = 3, + [24472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 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(2472), 28, + ACTIONS(1700), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1698), 40, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [32957] = 3, + [24526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 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(2476), 28, + ACTIONS(1704), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1702), 40, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [33006] = 3, + [24580] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 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(2516), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2436), 5, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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, + anon_sym_SEMI, + STATE(626), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2434), 9, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [33055] = 3, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24650] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 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(2520), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2440), 5, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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, + anon_sym_SEMI, + STATE(626), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2438), 9, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [33104] = 3, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(2444), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + ACTIONS(2442), 40, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101099,35 +79700,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33153] = 3, + [24774] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2448), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(713), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2446), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101137,6 +79766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [24844] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2452), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(712), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101145,127 +79804,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 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(2488), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(2450), 9, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [33251] = 3, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 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(2508), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(740), 1, + sym_attribute_specifier, + ACTIONS(2456), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [33300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2454), 36, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101283,35 +79873,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33349] = 3, + [24971] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(738), 1, + sym_attribute_specifier, + ACTIONS(2460), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2458), 36, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101329,35 +79925,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33398] = 3, + [25028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(742), 1, + sym_attribute_specifier, + ACTIONS(2464), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2462), 36, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101375,42 +79977,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33447] = 3, + [25085] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 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, + ACTIONS(1733), 1, anon_sym_EQ, - ACTIONS(2436), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, + ACTIONS(1760), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -101421,15 +80007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [33496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2414), 13, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101442,12 +80020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2416), 28, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101455,47 +80029,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [33545] = 3, + [25148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2470), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2468), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2466), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, anon_sym_register, @@ -101513,127 +80084,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33594] = 3, + [25205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 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(2480), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(734), 1, + sym_attribute_specifier, + ACTIONS(2475), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2473), 36, + anon_sym___extension__, + anon_sym_extern, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [33643] = 3, + [25262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 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(2512), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(753), 1, + sym_attribute_specifier, + ACTIONS(2479), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2477), 36, + anon_sym___extension__, + anon_sym_extern, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [33692] = 3, + [25319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(764), 1, + sym_attribute_specifier, + ACTIONS(2483), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2481), 36, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101651,42 +80240,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33741] = 3, + [25376] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 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, + ACTIONS(1733), 1, anon_sym_EQ, - ACTIONS(2492), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -101697,15 +80270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [33790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2450), 13, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101718,12 +80283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2452), 28, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101731,146 +80292,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [33839] = 3, + [25439] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 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(2432), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(736), 1, + sym_attribute_specifier, + ACTIONS(2487), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [33888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2446), 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(2448), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2485), 36, + anon_sym___extension__, + anon_sym_extern, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [33937] = 3, + [25496] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 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, + ACTIONS(1733), 1, anon_sym_EQ, - ACTIONS(2440), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, + ACTIONS(1744), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -101881,15 +80377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [33986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 13, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101902,12 +80390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2504), 28, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101915,93 +80399,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [34035] = 3, + [25559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 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(2424), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(763), 1, + sym_attribute_specifier, + ACTIONS(2491), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1506), 1, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1504), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2489), 36, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102019,63 +80454,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2426), 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(2428), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [34182] = 5, + [25616] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(1733), 1, anon_sym_EQ, - ACTIONS(2627), 10, + ACTIONS(2493), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102086,7 +80484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102099,11 +80497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 18, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102111,44 +80506,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [34235] = 3, + [25679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 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(2484), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(761), 1, + sym_attribute_specifier, + ACTIONS(2497), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2495), 36, + anon_sym___extension__, + anon_sym_extern, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [25736] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1758), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102159,15 +80591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2458), 13, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102180,12 +80604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2460), 28, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102193,47 +80613,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [34333] = 3, + [25799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(756), 1, + sym_attribute_specifier, + ACTIONS(2501), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2499), 36, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102251,42 +80668,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34382] = 3, + [25856] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 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, + ACTIONS(1733), 1, anon_sym_EQ, - ACTIONS(2444), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, + ACTIONS(1735), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102297,15 +80698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 13, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102318,12 +80711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2464), 28, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102331,47 +80720,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [34480] = 3, + [25919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 1, + ACTIONS(2505), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2503), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102389,35 +80772,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34529] = 3, + [25971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2509), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2507), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102435,35 +80821,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34578] = 3, + [26023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(2513), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2511), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102481,81 +80870,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34627] = 3, + [26075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 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(2456), 28, + ACTIONS(2517), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1466), 1, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1464), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2515), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102573,88 +80919,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34725] = 3, + [26127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 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(2524), 28, + ACTIONS(2521), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2519), 37, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [34774] = 3, + [26179] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 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, + ACTIONS(2523), 1, anon_sym_EQ, - ACTIONS(2500), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - 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_LBRACK, - anon_sym_QMARK, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2525), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102665,15 +80996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 13, + ACTIONS(1724), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102686,12 +81009,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2496), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_DOT, + ACTIONS(1718), 14, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102700,46 +81020,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, 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_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [34872] = 3, + [26239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(2529), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2527), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102757,35 +81070,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34921] = 3, + [26291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(2533), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2531), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102803,35 +81119,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34970] = 3, + [26343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(2537), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2535), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102849,35 +81168,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35019] = 3, + [26395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(2541), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1480), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2539), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102895,35 +81217,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35068] = 3, + [26447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2547), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2545), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1442), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + anon_sym_COLON, + ACTIONS(2543), 32, + anon_sym___extension__, + 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_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [26503] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2557), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2559), 1, + anon_sym_AMP_AMP, + ACTIONS(2561), 1, + anon_sym_PIPE, + ACTIONS(2563), 1, + anon_sym_CARET, + ACTIONS(2565), 1, + anon_sym_AMP, + ACTIONS(2575), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2551), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2567), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2569), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2571), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2549), 16, + anon_sym_COMMA, 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, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [26589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2577), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102941,23 +81383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35117] = 7, + [26641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1037), 1, - sym_field_declaration_list, - STATE(1086), 1, - sym_attribute_specifier, - ACTIONS(2811), 7, + ACTIONS(2583), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -102965,11 +81398,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2809), 28, + ACTIONS(2581), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -102992,112 +81432,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [35172] = 11, + [26693] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 8, - 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(2556), 19, - 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_LT_EQ, - 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, - [35235] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2683), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2821), 1, + ACTIONS(2557), 1, anon_sym_PIPE_PIPE, - ACTIONS(2823), 1, + ACTIONS(2559), 1, anon_sym_AMP_AMP, - ACTIONS(2825), 1, + ACTIONS(2561), 1, anon_sym_PIPE, - ACTIONS(2827), 1, + ACTIONS(2563), 1, anon_sym_CARET, - ACTIONS(2829), 1, + ACTIONS(2565), 1, anon_sym_AMP, - ACTIONS(2839), 1, + ACTIONS(2575), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2831), 2, + ACTIONS(2567), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2833), 2, + ACTIONS(2569), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2835), 2, + ACTIONS(2571), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2837), 2, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, + ACTIONS(2587), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2681), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, + ACTIONS(2585), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -103108,28 +81501,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35318] = 3, + sym_identifier, + [26779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + ACTIONS(2591), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 38, - 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_COLON, + ACTIONS(2589), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103147,39 +81547,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35365] = 7, + [26831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_field_declaration_list, - STATE(1111), 1, - sym_attribute_specifier, - ACTIONS(2843), 7, + ACTIONS(2466), 1, + sym_primitive_type, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2470), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2596), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2841), 28, + ACTIONS(2593), 32, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, @@ -103198,90 +81600,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [35420] = 19, + [26889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym_LPAREN2, - ACTIONS(2091), 1, - anon_sym_STAR, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1499), 1, - sym__declarator, - STATE(1621), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(2001), 1, - sym_ms_based_modifier, - ACTIONS(2847), 2, + STATE(744), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2603), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2601), 7, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1165), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1189), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [35499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2763), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 38, - 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_COLON, + ACTIONS(2599), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, anon_sym_register, @@ -103299,33 +81651,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [35546] = 3, + [26945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1466), 1, + STATE(774), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2609), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2607), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1464), 38, - 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_COLON, + ACTIONS(2605), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, anon_sym_register, @@ -103343,33 +81702,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [35593] = 3, + [27001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(2613), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 38, - 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_COLON, + ACTIONS(2611), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103387,77 +81750,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35640] = 3, + [27053] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1480), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2557), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2559), 1, + anon_sym_AMP_AMP, + ACTIONS(2561), 1, + anon_sym_PIPE, + ACTIONS(2563), 1, + anon_sym_CARET, + ACTIONS(2565), 1, + anon_sym_AMP, + ACTIONS(2575), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2567), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2569), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2571), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2617), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2615), 16, + anon_sym_COMMA, 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [27139] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2619), 1, + anon_sym_LPAREN2, + STATE(782), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1731), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [35687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, + ACTIONS(1729), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 38, - 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_COLON, + ACTIONS(1716), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, anon_sym_register, @@ -103475,33 +81869,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [35734] = 3, + [27197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(2624), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 38, - 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_COLON, + ACTIONS(2622), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103519,34 +81917,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35781] = 10, + [27249] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2817), 3, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2376), 9, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -103555,15 +81953,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2556), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2378), 23, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [27315] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2378), 23, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103575,28 +82033,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35842] = 3, + sym_identifier, + [27383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(2628), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1442), 38, - 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_COLON, + ACTIONS(2626), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103614,50 +82079,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35889] = 9, + [27435] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2546), 13, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2569), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2571), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2376), 5, + aux_sym_preproc_elif_token1, 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(2548), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2378), 21, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103669,31 +82141,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35948] = 6, + sym_identifier, + [27507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 1, - anon_sym___attribute__, - ACTIONS(2862), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2865), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2857), 4, + ACTIONS(2632), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2855), 29, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2630), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103711,83 +82187,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36001] = 19, + [27559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2636), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2823), 1, - anon_sym_AMP_AMP, - ACTIONS(2825), 1, - anon_sym_PIPE, - ACTIONS(2827), 1, - anon_sym_CARET, - ACTIONS(2829), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2831), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2833), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2817), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - 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, - [36080] = 7, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2634), 37, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [27611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_field_declaration_list, - STATE(1114), 1, - sym_attribute_specifier, - ACTIONS(2869), 7, + ACTIONS(2640), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -103795,11 +82251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2867), 28, + ACTIONS(2638), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -103822,171 +82285,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [36135] = 18, + [27663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2644), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2825), 1, - anon_sym_PIPE, - ACTIONS(2827), 1, - anon_sym_CARET, - ACTIONS(2829), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2831), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2833), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2817), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - [36212] = 17, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2642), 37, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [27715] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2827), 1, - anon_sym_CARET, - ACTIONS(2829), 1, - anon_sym_AMP, - STATE(810), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2815), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2831), 2, + ACTIONS(2567), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2833), 2, + ACTIONS(2569), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2835), 2, + ACTIONS(2571), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2837), 2, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - [36287] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2829), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2831), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2833), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2554), 3, + ACTIONS(2376), 5, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(2378), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103998,51 +82397,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36360] = 15, + sym_identifier, + [27789] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2565), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2831), 2, + ACTIONS(2567), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2833), 2, + ACTIONS(2569), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2835), 2, + ACTIONS(2571), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2837), 2, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 4, + ACTIONS(2376), 4, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - ACTIONS(2556), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(2378), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104054,153 +82458,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36431] = 14, + sym_identifier, + [27865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2648), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2833), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2817), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2556), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - 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, - [36500] = 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2646), 37, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [27917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2652), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2650), 37, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [27969] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(783), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2658), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2656), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 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(2556), 19, - 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_LT_EQ, - 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, - [36559] = 12, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2654), 32, + anon_sym___extension__, + 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_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [28025] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2563), 1, + anon_sym_CARET, + ACTIONS(2565), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2837), 2, + ACTIONS(2567), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2569), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2571), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, + ACTIONS(2376), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2556), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2378), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104212,23 +82669,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36624] = 3, + sym_identifier, + [28103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 7, + ACTIONS(2656), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2871), 32, + anon_sym_COLON, + ACTIONS(2654), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -104251,95 +82715,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36671] = 21, + [28155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2695), 1, - anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2662), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2823), 1, - anon_sym_AMP_AMP, - ACTIONS(2825), 1, - anon_sym_PIPE, - ACTIONS(2827), 1, - anon_sym_CARET, - ACTIONS(2829), 1, - anon_sym_AMP, - ACTIONS(2839), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2831), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2833), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2817), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2693), 12, - anon_sym_DOT_DOT_DOT, - 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, - [36754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 38, - 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_COLON, + ACTIONS(2660), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104357,99 +82764,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36801] = 8, + [28207] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2664), 1, + sym_identifier, + ACTIONS(2673), 1, + sym_primitive_type, + STATE(750), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2671), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2667), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2526), 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(2528), 21, - 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_LT_EQ, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - [36858] = 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2669), 31, + anon_sym___extension__, + 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_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + [28267] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2547), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2677), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2675), 32, + anon_sym___extension__, + 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, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [28323] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2561), 1, + anon_sym_PIPE, + ACTIONS(2563), 1, + anon_sym_CARET, + ACTIONS(2565), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2536), 13, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2376), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2567), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2569), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2571), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2538), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104461,107 +82934,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36917] = 21, + sym_identifier, + [28403] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2699), 1, - anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2823), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2559), 1, anon_sym_AMP_AMP, - ACTIONS(2825), 1, + ACTIONS(2561), 1, anon_sym_PIPE, - ACTIONS(2827), 1, + ACTIONS(2563), 1, anon_sym_CARET, - ACTIONS(2829), 1, + ACTIONS(2565), 1, anon_sym_AMP, - ACTIONS(2839), 1, - anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2376), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2831), 2, + ACTIONS(2567), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2833), 2, + ACTIONS(2569), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2835), 2, + ACTIONS(2571), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2837), 2, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2697), 12, - anon_sym_DOT_DOT_DOT, - 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, - [37000] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2572), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2555), 3, 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(2574), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2378), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104573,72 +82998,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1506), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1504), 38, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37106] = 3, + [28485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(2681), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 38, - 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_COLON, + ACTIONS(2679), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104656,33 +83044,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37153] = 9, + [28537] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2576), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2376), 11, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -104691,15 +83079,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2578), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2378), 23, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104711,109 +83102,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2799), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 38, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37259] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2879), 1, - anon_sym___attribute__, - ACTIONS(2882), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2885), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2877), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2875), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37312] = 7, + [28601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1077), 1, - sym_field_declaration_list, - STATE(1097), 1, - sym_attribute_specifier, - ACTIONS(2889), 7, + ACTIONS(2685), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104821,11 +83114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2887), 28, + ACTIONS(2683), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -104848,30 +83148,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [37367] = 3, + [28653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(2689), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 38, - 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_COLON, + ACTIONS(2687), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104889,33 +83197,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37414] = 3, + [28705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(2693), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 38, - 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_COLON, + ACTIONS(2691), 37, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104933,33 +83246,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37461] = 3, + [28757] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2547), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2697), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 38, - 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_COLON, + ACTIONS(2695), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, anon_sym_register, @@ -104977,15 +83298,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [37508] = 3, + [28813] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 7, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2547), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2701), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104993,16 +83319,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2657), 32, + ACTIONS(2699), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, @@ -105021,17 +83349,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [28869] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2378), 21, + 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___attribute__, + 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, + [28940] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2713), 1, + anon_sym_SEMI, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2452), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(712), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2450), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, sym_identifier, - [37555] = 3, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2717), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 38, + ACTIONS(2715), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105039,6 +83480,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105065,40 +83508,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [37602] = 7, + [29060] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1064), 1, - sym_field_declaration_list, - STATE(1103), 1, - sym_attribute_specifier, - ACTIONS(2893), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_SEMI, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2452), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2891), 28, + STATE(712), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2450), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105108,22 +83572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [37657] = 3, + [29129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(1265), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 38, + ACTIONS(1263), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105131,6 +83585,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105157,17 +83613,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [37704] = 3, + [29180] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2721), 1, + anon_sym_SEMI, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2452), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(712), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2450), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 1, + ACTIONS(1337), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 38, + ACTIONS(1335), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105175,6 +83690,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105201,32 +83718,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [37751] = 3, + [29300] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2723), 1, + anon_sym_SEMI, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2452), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, + STATE(712), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2450), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1325), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2895), 32, + ACTIONS(1323), 42, + 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105244,32 +83823,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [37797] = 3, + [29420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 6, + ACTIONS(2368), 1, + anon_sym_EQ, + ACTIONS(2370), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 13, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + 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, + ACTIONS(1718), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + 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_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [29475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1907), 32, + ACTIONS(2725), 42, + 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105287,28 +83921,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [37843] = 3, + [29526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 2, + ACTIONS(2731), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2406), 36, + ACTIONS(2729), 42, + 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -105330,73 +83969,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [37889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2675), 1, - anon_sym_EQ, - ACTIONS(2677), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 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_DOT, - ACTIONS(1953), 14, - 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_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37939] = 3, + [29577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 2, + ACTIONS(2735), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2410), 36, - anon_sym___extension__, - 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, + ACTIONS(2733), 42, + 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105418,32 +84017,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [37985] = 3, + [29628] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2551), 1, + anon_sym_EQ, + ACTIONS(2737), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2739), 1, + anon_sym_AMP_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE, + ACTIONS(2743), 1, + anon_sym_CARET, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2549), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + 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, + [29713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1911), 32, + ACTIONS(2751), 42, + 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105461,22 +84130,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38031] = 3, + [29764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + ACTIONS(1349), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 36, + ACTIONS(1347), 42, 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105503,25 +84178,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38076] = 5, + [29815] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2617), 1, + anon_sym_EQ, + ACTIONS(2737), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2739), 1, + anon_sym_AMP_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE, + ACTIONS(2743), 1, + anon_sym_CARET, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2615), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + 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, + [29900] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2587), 1, + anon_sym_EQ, + ACTIONS(2737), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2739), 1, + anon_sym_AMP_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE, + ACTIONS(2743), 1, + anon_sym_CARET, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2585), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + 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, + [29985] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 10, + anon_sym_DASH, + anon_sym_PLUS, + 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(2378), 23, + 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_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [30048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(1273), 1, anon_sym_LBRACK_LBRACK, - STATE(772), 1, - sym_string_literal, - ACTIONS(2899), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2895), 30, + ACTIONS(1271), 42, + 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -105547,22 +84410,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38125] = 3, + [30099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 2, + ACTIONS(2757), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2789), 35, + ACTIONS(2755), 42, 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105589,36 +84458,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38170] = 5, + [30150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1108), 1, - sym_attribute_specifier, - ACTIONS(2903), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1261), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2901), 28, + ACTIONS(1259), 42, + 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105636,19 +84506,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [38219] = 3, + [30201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 2, + ACTIONS(2761), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2793), 35, + ACTIONS(2759), 42, 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105675,22 +84554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38264] = 3, + [30252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2765), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2761), 35, + ACTIONS(2763), 42, 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105717,22 +84602,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38309] = 3, + [30303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(2769), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 36, + ACTIONS(2767), 42, 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105759,22 +84650,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38354] = 3, + [30354] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 8, + 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(2378), 23, + 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_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [30419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1506), 1, + ACTIONS(2773), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1504), 36, + ACTIONS(2771), 42, 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105801,106 +84753,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38399] = 3, + [30470] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1442), 36, - 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___extension__, - anon_sym_extern, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2378), 23, + 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_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [30537] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2378), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [30610] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2376), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [30685] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2743), 1, + anon_sym_CARET, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38444] = 3, + 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, + [30762] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1480), 36, - 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___extension__, - anon_sym_extern, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2741), 1, + anon_sym_PIPE, + ACTIONS(2743), 1, + anon_sym_CARET, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38489] = 3, + 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, + [30841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(2777), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 36, + ACTIONS(2775), 42, 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105927,22 +85099,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38534] = 3, + [30892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1466), 1, + ACTIONS(2781), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1464), 36, + ACTIONS(2779), 42, 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -105969,119 +85147,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [38579] = 3, + [30943] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2765), 35, - 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___extension__, - anon_sym_extern, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2739), 1, + anon_sym_AMP_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE, + ACTIONS(2743), 1, + anon_sym_CARET, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 2, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2769), 35, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38669] = 5, + 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, + [31024] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2787), 1, anon_sym___attribute__, - STATE(1112), 1, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + anon_sym_COLON, + STATE(767), 1, sym_attribute_specifier, - ACTIONS(2907), 7, + STATE(878), 1, + sym_enumerator_list, + ACTIONS(2785), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2905), 28, + ACTIONS(2783), 31, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, @@ -106100,77 +85266,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [38718] = 3, + [31084] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 36, - 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___extension__, - anon_sym_extern, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1737), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 12, + anon_sym_DASH, + anon_sym_PLUS, + 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, + ACTIONS(1718), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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_SEMI, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38763] = 9, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [31138] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2909), 3, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, anon_sym___based, - anon_sym_LBRACK, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2911), 5, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1259), 1, + sym__declarator, + STATE(1402), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2796), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(872), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(822), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(931), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -106181,46 +85383,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [38820] = 3, + [31224] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 36, - 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, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1265), 1, + sym__declarator, + STATE(1414), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2804), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(914), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -106229,68 +85448,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38865] = 3, + [31310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 36, - 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___extension__, - anon_sym_extern, + ACTIONS(2806), 2, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 1, + ACTIONS(2813), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 36, - 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_LBRACE, + ACTIONS(2816), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2809), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2811), 30, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -106313,26 +85491,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [38955] = 3, + [31365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(2818), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(2825), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 36, - 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_LBRACE, + ACTIONS(2828), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2821), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2823), 30, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -106355,31 +85540,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [39000] = 3, + [31420] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(2834), 1, + anon_sym___attribute__, + STATE(781), 1, + sym_attribute_specifier, + STATE(884), 1, + sym_enumerator_list, + ACTIONS(2832), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 36, - 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, + ACTIONS(2830), 31, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, anon_sym_register, @@ -106397,27 +85593,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [39045] = 3, + [31477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 1, + ACTIONS(2153), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 36, - 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_LBRACE, + ACTIONS(2151), 38, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -106439,29 +85634,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39090] = 5, + [31525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2149), 2, anon_sym_LBRACK_LBRACK, - STATE(768), 1, - sym_string_literal, - ACTIONS(2899), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2895), 30, + anon_sym_LBRACE, + ACTIONS(2147), 38, anon_sym___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -106483,20 +85679,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39139] = 3, + [31573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2753), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 36, + anon_sym_RBRACE, + ACTIONS(2751), 37, 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, @@ -106525,17 +85723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39184] = 3, + [31620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(2735), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 36, + ACTIONS(2733), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106567,23 +85767,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39229] = 3, + [31667] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2380), 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(2382), 19, + 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_LT_EQ, + 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, + [31726] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2617), 1, + anon_sym_EQ, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2847), 1, + anon_sym_AMP_AMP, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + ACTIONS(2863), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2615), 12, + anon_sym_DOT_DOT_DOT, + 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, + [31809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(2444), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 36, - 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, + STATE(471), 1, + sym_string_literal, + ACTIONS(2865), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2442), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -106609,20 +85925,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39274] = 3, + [31860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 2, + ACTIONS(1349), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1426), 35, + ACTIONS(1347), 38, 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, @@ -106651,17 +85969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39319] = 3, + [31907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(1261), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 36, + ACTIONS(1259), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106693,18 +86013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39364] = 3, + [31954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1506), 2, + ACTIONS(1337), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1504), 35, + ACTIONS(1335), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106735,18 +86057,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39409] = 3, + [32001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 2, + ACTIONS(1325), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1442), 35, + ACTIONS(1323), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106777,62 +86101,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39454] = 5, + [32048] = 21, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2917), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2915), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2551), 1, + anon_sym_EQ, + ACTIONS(2837), 1, anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2847), 1, + anon_sym_AMP_AMP, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + ACTIONS(2863), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2913), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2549), 12, + anon_sym_DOT_DOT_DOT, + 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, + [32131] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39503] = 3, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2348), 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(2350), 19, + 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_LT_EQ, + 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, + [32190] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 10, + anon_sym_DASH, + anon_sym_PLUS, + 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(2378), 19, + 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_LT_EQ, + 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, + [32251] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2587), 1, + anon_sym_EQ, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2847), 1, + anon_sym_AMP_AMP, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + ACTIONS(2863), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2585), 12, + anon_sym_DOT_DOT_DOT, + 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, + [32334] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2376), 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(2378), 19, + 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_LT_EQ, + 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, + [32393] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2847), 1, + anon_sym_AMP_AMP, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + 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, + [32472] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [32549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 2, + ACTIONS(1273), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2785), 35, + ACTIONS(1271), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106863,150 +86539,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39548] = 5, + [32596] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1105), 1, - sym_attribute_specifier, - ACTIONS(2922), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2920), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39597] = 5, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [32671] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1087), 1, - sym_attribute_specifier, - ACTIONS(2926), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2853), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2376), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2843), 3, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2924), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2799), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2797), 35, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [39691] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [32744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 2, + ACTIONS(2753), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1480), 35, + ACTIONS(2751), 38, 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, @@ -107035,152 +86698,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39736] = 3, + [32791] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1488), 35, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [39781] = 3, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2378), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [32862] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2773), 35, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [39826] = 9, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2378), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [32931] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2928), 3, - anon_sym___based, + ACTIONS(2354), 1, anon_sym_LBRACK, - sym_identifier, - ACTIONS(2930), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, anon_sym_STAR, - anon_sym_SEMI, - STATE(1039), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [39883] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2378), 19, + 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_LT_EQ, + 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, + [32996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 2, + ACTIONS(2781), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2805), 35, + ACTIONS(2779), 38, 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, @@ -107209,69 +86906,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [39928] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1106), 1, - sym_attribute_specifier, - ACTIONS(2934), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2932), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39977] = 5, + [33043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(1265), 1, anon_sym_LBRACK_LBRACK, - STATE(767), 1, - sym_string_literal, - ACTIONS(2899), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2895), 30, + ACTIONS(1263), 38, + 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___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107297,36 +86950,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, - anon_sym_union, - sym_identifier, - [40026] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1102), 1, - sym_attribute_specifier, - ACTIONS(2938), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + anon_sym_union, + sym_identifier, + [33090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2936), 28, + ACTIONS(2775), 38, + 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___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107344,15 +86994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40075] = 3, + [33137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 2, + ACTIONS(2717), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2777), 35, + ACTIONS(2715), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107383,36 +87038,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [40120] = 5, + [33184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1100), 1, - sym_attribute_specifier, - ACTIONS(2942), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2769), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2940), 28, + anon_sym_RBRACE, + ACTIONS(2767), 37, + 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___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107430,22 +87082,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40169] = 5, + [33231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(1349), 2, anon_sym_LBRACK_LBRACK, - STATE(771), 1, - sym_string_literal, - ACTIONS(2899), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2895), 30, + anon_sym_RBRACE, + ACTIONS(1347), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107471,36 +87126,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [40218] = 5, + [33278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1081), 1, - sym_attribute_specifier, - ACTIONS(2946), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2773), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2944), 28, + ACTIONS(2771), 38, + 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___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107518,22 +87170,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40267] = 5, + [33325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2769), 1, anon_sym_LBRACK_LBRACK, - STATE(770), 1, - sym_string_literal, - ACTIONS(2899), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2895), 30, + ACTIONS(2767), 38, + 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___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107559,20 +87214,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [40316] = 3, + [33372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 2, + ACTIONS(2765), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2801), 35, + ACTIONS(2763), 38, 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, @@ -107601,50 +87258,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [40361] = 9, + [33419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2871), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2948), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2950), 5, + STATE(772), 1, + sym_attribute_specifier, + ACTIONS(2869), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(872), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_LBRACK_LBRACK, + ACTIONS(2867), 31, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + 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_auto, anon_sym_register, @@ -107654,35 +87300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [40418] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2952), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2954), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(1073), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -107691,26 +87308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [40475] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [33470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 2, + ACTIONS(2761), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2781), 35, + ACTIONS(2759), 38, 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, @@ -107739,20 +87348,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [40520] = 3, + [33517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(2757), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1464), 35, + ACTIONS(2755), 38, 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, @@ -107781,36 +87392,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [40565] = 5, + [33564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1101), 1, - sym_attribute_specifier, - ACTIONS(2958), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1337), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2956), 28, + ACTIONS(1335), 38, + 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___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107828,33 +87436,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40614] = 5, + [33611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1116), 1, - sym_attribute_specifier, - ACTIONS(2962), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2444), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2960), 28, + STATE(464), 1, + sym_string_literal, + ACTIONS(2865), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2442), 32, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107872,33 +87482,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40663] = 5, + [33662] = 5, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2968), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2966), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2444), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2964), 24, + STATE(486), 1, + sym_string_literal, + ACTIONS(2865), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2442), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107916,35 +87528,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40711] = 7, + [33713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 1, - sym_identifier, - ACTIONS(2979), 1, - sym_primitive_type, - STATE(1090), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2977), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2973), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2444), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2975), 23, + STATE(470), 1, + sym_string_literal, + ACTIONS(2865), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2442), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107962,28 +87574,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40763] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2731), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2981), 29, + ACTIONS(2729), 38, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108001,30 +87618,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40807] = 3, + [33811] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2843), 3, anon_sym_STAR, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 8, + 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(2378), 19, + 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_LT_EQ, + 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, + [33874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2985), 29, + ACTIONS(2725), 38, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108042,30 +87714,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40851] = 3, + [33921] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2396), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, + 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(2398), 19, + 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_LT_EQ, + 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, + [33980] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2388), 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(2390), 21, + 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_LT_EQ, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + [34037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2989), 29, + anon_sym_RBRACE, + ACTIONS(2733), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108083,30 +87857,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40895] = 3, + [34084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1265), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2993), 29, + anon_sym_RBRACE, + ACTIONS(1263), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108124,33 +87901,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40939] = 5, + [34131] = 3, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2968), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2999), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2765), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2997), 24, + anon_sym_RBRACE, + ACTIONS(2763), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108168,29 +87945,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40987] = 3, + [34178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1325), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3001), 29, + ACTIONS(1323), 38, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108208,30 +87989,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41031] = 3, + [34225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2761), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3005), 29, + anon_sym_RBRACE, + ACTIONS(2759), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108249,30 +88033,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41075] = 3, + [34272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1261), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3009), 29, + anon_sym_RBRACE, + ACTIONS(1259), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108290,32 +88077,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41119] = 5, + [34319] = 5, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2968), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3015), 7, + ACTIONS(2878), 1, + anon_sym___attribute__, + STATE(746), 1, + sym_attribute_specifier, + ACTIONS(2876), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3013), 24, + ACTIONS(2874), 31, anon_sym___extension__, 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_auto, @@ -108334,33 +88127,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [41167] = 6, + [34370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - sym_primitive_type, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2917), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3020), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2773), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3017), 24, + anon_sym_RBRACE, + ACTIONS(2771), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108378,29 +88167,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41217] = 3, + [34417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2777), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3023), 29, + anon_sym_RBRACE, + ACTIONS(2775), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108418,33 +88211,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41261] = 5, + [34464] = 3, ACTIONS(3), 1, sym_comment, - STATE(1094), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3031), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3029), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2731), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3027), 24, + anon_sym_RBRACE, + ACTIONS(2729), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108462,32 +88255,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41309] = 5, + [34511] = 3, ACTIONS(3), 1, sym_comment, - STATE(1089), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3037), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3035), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1273), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3033), 24, + ACTIONS(1271), 38, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108505,32 +88299,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41357] = 5, + [34558] = 3, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2968), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3041), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2717), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3039), 24, + ACTIONS(2715), 38, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108548,28 +88343,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41405] = 3, + [34605] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 7, + ACTIONS(2885), 1, + anon_sym___attribute__, + STATE(780), 1, + sym_attribute_specifier, + ACTIONS(2883), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3043), 29, + ACTIONS(2881), 31, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_auto, @@ -108588,30 +88393,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [41449] = 3, + [34656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2781), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3047), 29, + anon_sym_RBRACE, + ACTIONS(2779), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108629,30 +88433,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41493] = 3, + [34703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2727), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3051), 29, + anon_sym_RBRACE, + ACTIONS(2725), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108670,30 +88477,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41537] = 3, + [34750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2757), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3055), 29, + anon_sym_RBRACE, + ACTIONS(2755), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108711,39 +88521,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41581] = 3, + [34797] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2372), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3059), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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(2374), 19, + 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_LT_EQ, + 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, + [34856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2384), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2386), 24, + 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_LT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2364), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2366), 24, + 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_LT_EQ, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2523), 1, + anon_sym_EQ, + ACTIONS(2525), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 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_DOT, + ACTIONS(1718), 14, + 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_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2392), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2394), 24, + 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_LT_EQ, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [35044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2360), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2362), 24, + 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_LT_EQ, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [35090] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, + anon_sym_LPAREN2, + ACTIONS(2892), 1, + anon_sym_STAR, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1317), 1, + sym__type_declarator, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(896), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(989), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -108752,39 +88853,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [41625] = 3, + [35166] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, anon_sym_LPAREN2, + ACTIONS(2892), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3063), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1310), 1, + sym__type_declarator, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(897), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(988), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -108793,39 +88911,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [41669] = 3, + [35242] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, anon_sym_LPAREN2, + ACTIONS(2892), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3067), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1310), 1, + sym__type_declarator, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(988), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -108834,39 +88969,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [41713] = 3, + [35318] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, anon_sym_LPAREN2, + ACTIONS(2892), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3071), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1323), 1, + sym__type_declarator, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(982), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -108875,20 +89027,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [41757] = 3, + [35394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(2898), 1, + anon_sym_SEMI, + ACTIONS(1737), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 12, + anon_sym_DASH, + anon_sym_PLUS, + 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, + ACTIONS(1718), 13, + anon_sym_LPAREN2, + 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_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [35445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2902), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3075), 29, + ACTIONS(2900), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108916,29 +89107,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41801] = 3, + [35490] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 7, + ACTIONS(2619), 1, + anon_sym_LPAREN2, + ACTIONS(2904), 1, anon_sym_COMMA, + ACTIONS(2907), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(782), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1639), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1729), 2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3079), 29, + ACTIONS(1731), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1716), 26, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108957,200 +89159,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [41845] = 3, + [35547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1203), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1205), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3083), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + 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, + [35591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [41889] = 3, + ACTIONS(1193), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + 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, + [35635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1207), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1209), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3087), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + 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, + [35679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1203), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [41933] = 6, + ACTIONS(1205), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + 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, + [35723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(1131), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1133), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + 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, + [35767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1211), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1213), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + 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, + [35811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1207), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1209), 19, anon_sym_LPAREN2, - STATE(1079), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1969), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1967), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1951), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [41983] = 3, + 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, + [35855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1131), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1133), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3094), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [42027] = 5, + 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, + [35899] = 8, ACTIONS(3), 1, sym_comment, - STATE(1085), 1, + ACTIONS(2913), 1, + anon_sym_LPAREN2, + ACTIONS(2917), 1, + anon_sym_LBRACK, + STATE(782), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3102), 4, + ACTIONS(1729), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2910), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1731), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3100), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3098), 24, + ACTIONS(1716), 25, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109168,110 +89533,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [42075] = 3, + [35953] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2619), 1, anon_sym_LPAREN2, + STATE(782), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1729), 2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3104), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [42119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3110), 7, + ACTIONS(2920), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3108), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(1731), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [42163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3114), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3112), 29, + ACTIONS(1716), 26, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109290,12 +89578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [42207] = 3, + [36005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 17, + ACTIONS(1135), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -109313,7 +89602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1392), 19, + ACTIONS(1137), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -109333,28 +89622,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [42251] = 3, + [36049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1191), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1193), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, + 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, + [36093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3116), 29, + anon_sym_LBRACE, + ACTIONS(1207), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109372,30 +89695,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42295] = 3, + [36135] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1779), 1, anon_sym_LPAREN2, + ACTIONS(1781), 1, anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1261), 1, + sym__declarator, + STATE(1430), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2923), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3098), 29, + anon_sym_LBRACE, + ACTIONS(1207), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109413,30 +89787,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42339] = 3, + [36247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1205), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3120), 29, + anon_sym_LBRACE, + ACTIONS(1203), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109454,53 +89826,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42383] = 16, + [36289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3124), 1, - sym_identifier, - ACTIONS(3126), 1, - anon_sym_LPAREN2, - ACTIONS(3128), 1, - anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1546), 1, - sym__type_declarator, - STATE(2038), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1281), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1303), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3130), 4, + ACTIONS(1205), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1203), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -109509,34 +89865,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42452] = 9, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN2, - ACTIONS(3134), 1, - anon_sym_COMMA, - ACTIONS(3137), 1, - anon_sym_RPAREN, - STATE(1079), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1826), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1967), 2, - anon_sym_STAR, + ACTIONS(1193), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1969), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1951), 24, + anon_sym_LBRACE, + ACTIONS(1191), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109554,192 +89904,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42507] = 16, + [36373] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3124), 1, - sym_identifier, - ACTIONS(3126), 1, - anon_sym_LPAREN2, - ACTIONS(3128), 1, - anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1542), 1, - sym__type_declarator, - STATE(2038), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1117), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1276), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, + ACTIONS(47), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42576] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3124), 1, - sym_identifier, - ACTIONS(3126), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(1909), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1542), 1, - sym__type_declarator, - STATE(2038), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1276), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1303), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2849), 3, + ACTIONS(2798), 1, sym_ms_restrict_modifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1414), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2927), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42645] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3124), 1, - sym_identifier, - ACTIONS(3126), 1, - anon_sym_LPAREN2, - ACTIONS(3128), 1, - anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1541), 1, - sym__type_declarator, - STATE(2038), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2929), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1120), 2, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1287), 2, + STATE(1077), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, + ACTIONS(2804), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42714] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_LPAREN2, - ACTIONS(3147), 1, - anon_sym_LBRACK, - STATE(1079), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1967), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3140), 2, - anon_sym_RPAREN, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1969), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1951), 23, + anon_sym_LBRACE, + ACTIONS(1191), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109757,35 +89997,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42766] = 10, + [36487] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3150), 1, - anon_sym_SEMI, - ACTIONS(2952), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2954), 2, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1907), 1, anon_sym_LPAREN2, + ACTIONS(1909), 1, anon_sym_STAR, - STATE(1073), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(2798), 1, + sym_ms_restrict_modifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1402), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2927), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2929), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(919), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1082), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + aux_sym__type_definition_type_repeat1, + ACTIONS(2796), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -109793,42 +90058,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [42822] = 7, + [36559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN2, - STATE(1079), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1967), 2, - anon_sym_STAR, + ACTIONS(2935), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3152), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1969), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1951), 24, + anon_sym_LBRACE, + ACTIONS(2933), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109846,79 +90090,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42872] = 10, + [36601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, + ACTIONS(2937), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3155), 1, - anon_sym_SEMI, - ACTIONS(2952), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2954), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1073), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [42928] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 1, - anon_sym___attribute__, - ACTIONS(3164), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_COLON, - STATE(1091), 1, - sym_attribute_specifier, - STATE(1166), 1, - sym_enumerator_list, - ACTIONS(3159), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3157), 23, + ACTIONS(2811), 32, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109936,44 +90129,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42980] = 10, + [36643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, + ACTIONS(2941), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3168), 1, - anon_sym_SEMI, - ACTIONS(2952), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2954), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1073), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_LBRACE, + ACTIONS(2939), 32, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109983,33 +90160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43036] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3170), 1, - anon_sym_SEMI, - ACTIONS(2952), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2954), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1073), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -110018,8 +90168,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1211), 32, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110029,33 +90199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43092] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3172), 1, - anon_sym_SEMI, - ACTIONS(2952), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2954), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1073), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -110064,507 +90207,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36727] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2943), 1, + anon_sym_typedef, + ACTIONS(2404), 32, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [43148] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2554), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2556), 12, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - sym_identifier, - [43211] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2554), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2556), 10, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - sym_identifier, - [43276] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2556), 10, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - sym_identifier, - [43343] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, - anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2556), 9, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - sym_identifier, - [43414] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3192), 1, - anon_sym_CARET, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2556), 9, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - sym_identifier, - [43483] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, - anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - ACTIONS(3194), 1, - anon_sym_AMP_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2556), 8, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - sym_identifier, - [43556] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2554), 7, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - anon_sym_QMARK, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [43611] = 21, + [36771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2683), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, - anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - ACTIONS(3194), 1, - anon_sym_AMP_AMP, - ACTIONS(3196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3198), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2681), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(2406), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2945), 1, + anon_sym_typedef, + ACTIONS(2404), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [43688] = 21, + [36815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2695), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, - anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - ACTIONS(3194), 1, - anon_sym_AMP_AMP, - ACTIONS(3196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3198), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2693), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(1133), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1131), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [43765] = 7, + [36857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(3204), 1, - anon_sym___attribute__, - STATE(1088), 1, - sym_attribute_specifier, - STATE(1180), 1, - sym_enumerator_list, - ACTIONS(3202), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1133), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3200), 23, + anon_sym_LBRACE, + ACTIONS(1131), 32, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110582,220 +90365,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [43814] = 21, + [36899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2699), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, - anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - ACTIONS(3194), 1, - anon_sym_AMP_AMP, - ACTIONS(3196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3198), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2697), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(2406), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2947), 1, + anon_sym_typedef, + ACTIONS(2404), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [43891] = 12, + [36943] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(1779), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(1781), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2554), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 14, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_QMARK, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, sym_identifier, - [43950] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2554), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 16, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1265), 1, + sym__declarator, + STATE(1414), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2804), 2, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - anon_sym_QMARK, - sym_identifier, - [44007] = 21, + anon_sym_RPAREN, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - ACTIONS(3194), 1, - anon_sym_AMP_AMP, - ACTIONS(3196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3198), 1, - anon_sym_QMARK, - ACTIONS(3209), 1, - aux_sym_preproc_elif_token1, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3207), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(1137), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1135), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [44084] = 4, + [37055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2406), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3211), 1, + ACTIONS(2949), 1, anon_sym_typedef, - ACTIONS(2657), 30, + ACTIONS(2404), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110821,35 +90537,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [44126] = 3, + [37099] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3213), 30, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, + anon_sym_LPAREN2, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1303), 1, + sym__field_declarator, + STATE(1732), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37166] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, + anon_sym_LPAREN2, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1295), 1, + sym__field_declarator, + STATE(1732), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1089), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37233] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2617), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, + anon_sym_SLASH, + ACTIONS(2963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2965), 1, + anon_sym_AMP_AMP, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2977), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2615), 6, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [37310] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1265), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(953), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1087), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -110858,36 +90753,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44166] = 4, + [37377] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3217), 1, - anon_sym_typedef, - ACTIONS(2657), 30, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, + anon_sym_LPAREN2, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1295), 1, + sym__field_declarator, + STATE(1732), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(934), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1089), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -110896,237 +90804,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44208] = 10, + [37444] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(810), 1, + ACTIONS(2963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2965), 1, + anon_sym_AMP_AMP, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_QMARK, + ACTIONS(2989), 1, + aux_sym_preproc_elif_token1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2554), 6, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2975), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [44262] = 18, + ACTIONS(2987), 6, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [37521] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2376), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(2378), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, - ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [44332] = 20, + sym_identifier, + [37578] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2551), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2965), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2967), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(2969), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(2971), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(2981), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2697), 6, + ACTIONS(2549), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [44406] = 17, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [37655] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2587), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(3227), 1, + ACTIONS(2963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2965), 1, + anon_sym_AMP_AMP, + ACTIONS(2967), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(2969), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(2971), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(2981), 1, + anon_sym_QMARK, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 9, + ACTIONS(2585), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [44474] = 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [37732] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3245), 1, - anon_sym_typedef, - ACTIONS(2657), 30, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1265), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1087), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111135,398 +91069,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44516] = 17, + [37799] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(3221), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 9, + ACTIONS(2376), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2378), 12, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, - [44584] = 16, + sym_identifier, + [37862] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(3221), 1, + ACTIONS(2376), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(2965), 1, + anon_sym_AMP_AMP, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, anon_sym_AMP, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 10, + ACTIONS(2378), 8, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [44650] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3247), 1, - anon_sym_typedef, - ACTIONS(2657), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [44692] = 15, + [37935] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2959), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2376), 7, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2556), 10, + ACTIONS(2378), 16, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - [44756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3251), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3249), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [44796] = 14, + [37990] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2376), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(810), 1, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3235), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 12, + ACTIONS(2378), 9, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [44858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1392), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1390), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [44898] = 12, + [38061] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(810), 1, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2376), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2554), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 14, + ACTIONS(2977), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2378), 9, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [44956] = 11, + sym_identifier, + [38130] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2554), 4, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2376), 5, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 16, + ACTIONS(2378), 14, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -111534,183 +91367,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [45012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3253), 1, - anon_sym_typedef, - ACTIONS(2657), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [45054] = 20, + [38189] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(2971), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2376), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2693), 6, + ACTIONS(2378), 10, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [45128] = 20, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + sym_identifier, + [38256] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2681), 6, + ACTIONS(2376), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2378), 10, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [45202] = 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + sym_identifier, + [38321] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2875), 30, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1259), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(943), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1085), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111719,44 +91521,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45242] = 15, + [38388] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym_LPAREN2, - ACTIONS(2091), 1, - anon_sym_STAR, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1490), 1, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1261), 1, sym__declarator, - STATE(1619), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(2001), 1, + STATE(1827), 1, sym_ms_based_modifier, - ACTIONS(3257), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1296), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1084), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1537), 5, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -111772,35 +91572,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45305] = 5, + [38455] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 1, - anon_sym___attribute__, - STATE(1083), 1, - sym_attribute_specifier, - ACTIONS(3261), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, anon_sym_LPAREN2, + ACTIONS(2955), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3259), 23, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1291), 1, + sym__field_declarator, + STATE(1732), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(935), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1088), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111809,92 +91623,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45348] = 20, + [38522] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3272), 1, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2376), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2378), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(3274), 1, anon_sym_AMP_AMP, - ACTIONS(3276), 1, + 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, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [38576] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3278), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3280), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3290), 1, - anon_sym_QMARK, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2697), 5, + ACTIONS(2378), 8, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [45421] = 10, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [38646] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3268), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2554), 6, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2376), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 15, + ACTIONS(2378), 14, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -111902,234 +91760,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [38704] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2376), 1, + anon_sym_PIPE, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(3003), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2378), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - sym_identifier, - [45474] = 20, + [38770] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3274), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3276), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3278), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3280), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3290), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3207), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [45547] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 1, - anon_sym___attribute__, - STATE(1082), 1, - sym_attribute_specifier, - ACTIONS(3294), 6, + ACTIONS(2615), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3292), 23, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [45590] = 11, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [38844] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2554), 4, + ACTIONS(2376), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 15, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2378), 10, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [38908] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(2549), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [38982] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3024), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3021), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3019), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3017), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [45645] = 20, + [39030] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3274), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3276), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3278), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3280), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3290), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2681), 5, + ACTIONS(2585), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [45718] = 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [39104] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3288), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2554), 4, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2376), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 13, + ACTIONS(2378), 16, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -112137,317 +92105,731 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_QMARK, - sym_identifier, - [45775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3299), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45814] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(3270), 1, - anon_sym_SLASH, - STATE(964), 1, - sym_argument_list, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3284), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3286), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 11, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - sym_identifier, - [45875] = 15, + [39160] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, - anon_sym_SLASH, - STATE(964), 1, - sym_argument_list, - ACTIONS(2554), 2, + ACTIONS(2376), 1, anon_sym_PIPE, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2733), 2, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 9, + ACTIONS(2378), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - sym_identifier, - [45938] = 16, + [39228] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3280), 1, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 9, + ACTIONS(2378), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - sym_identifier, - [46003] = 17, + [39296] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3278), 1, - anon_sym_CARET, - ACTIONS(3280), 1, - anon_sym_AMP, - STATE(964), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 8, + ACTIONS(2378), 12, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, + [39358] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1856), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1694), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39421] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1850), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1694), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39484] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1753), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1694), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39547] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, + sym_identifier, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1237), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39610] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, + sym_identifier, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1233), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39673] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(3033), 1, + anon_sym_enum, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1835), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(990), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1694), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39736] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, + sym_identifier, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1235), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39799] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, + sym_identifier, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1236), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39862] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, + sym_identifier, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1238), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39925] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, sym_identifier, - [46070] = 17, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1239), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39988] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(3270), 1, - anon_sym_SLASH, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3278), 1, - anon_sym_CARET, - ACTIONS(3280), 1, - anon_sym_AMP, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3282), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3284), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3286), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3288), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2556), 8, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, sym_identifier, - [46137] = 5, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1240), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [40051] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, - anon_sym___attribute__, - STATE(1096), 1, - sym_attribute_specifier, - ACTIONS(3305), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3303), 23, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, + sym_identifier, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1234), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112456,147 +92838,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [40114] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1849), 1, sym_identifier, - [46180] = 20, + ACTIONS(3033), 1, + anon_sym_enum, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1927), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(990), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1694), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [40177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3035), 11, anon_sym_SLASH, - ACTIONS(3272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3274), 1, - anon_sym_AMP_AMP, - ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3278), 1, - anon_sym_CARET, - ACTIONS(3280), 1, anon_sym_AMP, - ACTIONS(3290), 1, - anon_sym_QMARK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3282), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3284), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3288), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2693), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - [46253] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, + ACTIONS(3037), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(3270), 1, - anon_sym_SLASH, - ACTIONS(3274), 1, - anon_sym_AMP_AMP, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3278), 1, - anon_sym_CARET, - ACTIONS(3280), 1, - anon_sym_AMP, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3268), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3286), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 7, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - sym_identifier, - [46322] = 14, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40215] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2892), 1, anon_sym_STAR, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1483), 1, - sym__declarator, - STATE(2001), 1, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1321), 1, + sym__type_declarator, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1303), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1319), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112607,42 +92967,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46382] = 14, + [40275] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1499), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1189), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1323), 2, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1083), 1, + sym_type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(1694), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112653,43 +93013,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46442] = 14, + [40335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3039), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3041), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3318), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1523), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1303), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1321), 2, + 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40373] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(3050), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(3045), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3047), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -112699,88 +93076,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46502] = 14, + ACTIONS(3043), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3053), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3055), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3318), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1523), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1187), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1321), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46562] = 14, + 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40457] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1530), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1303), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1320), 2, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1093), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + ACTIONS(3029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112791,42 +93168,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46622] = 14, + [40517] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2892), 1, anon_sym_STAR, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1490), 1, - sym__declarator, - STATE(2001), 1, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1323), 1, + sym__type_declarator, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1183), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1322), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112837,42 +93214,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46682] = 14, + [40577] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2892), 1, anon_sym_STAR, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1490), 1, - sym__declarator, - STATE(2001), 1, + sym__type_declarator, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1303), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1322), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112883,42 +93260,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46742] = 14, + [40637] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1524), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1185), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1318), 2, + ACTIONS(3033), 1, + anon_sym_enum, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1083), 1, + sym_type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + ACTIONS(1694), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112929,660 +93306,898 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46802] = 22, + [40697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3059), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40735] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3320), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3322), 1, - anon_sym_RBRACE, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - STATE(1796), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46877] = 22, + ACTIONS(3063), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [40809] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3324), 1, + ACTIONS(3065), 1, anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3067), 1, + anon_sym_RBRACE, + STATE(677), 1, sym_argument_list, - STATE(1789), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + STATE(1594), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46952] = 22, + [40884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3069), 23, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [40921] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3324), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(3328), 1, + ACTIONS(3075), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - STATE(1824), 1, + STATE(1588), 1, aux_sym_argument_list_repeat1, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47027] = 22, + [40996] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3330), 1, + ACTIONS(3077), 1, anon_sym_COMMA, - ACTIONS(3332), 1, + ACTIONS(3079), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - STATE(1748), 1, + STATE(1577), 1, aux_sym_generic_expression_repeat1, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47102] = 22, + [41071] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3324), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(3334), 1, + ACTIONS(3081), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - STATE(1794), 1, + STATE(1586), 1, aux_sym_argument_list_repeat1, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47177] = 22, + [41146] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3330), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(3336), 1, + ACTIONS(3083), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - STATE(1818), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2534), 2, + STATE(1629), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3087), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3085), 23, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [41258] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47252] = 22, + ACTIONS(3089), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [41329] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3324), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(3338), 1, + ACTIONS(3091), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - STATE(1817), 1, + STATE(1561), 1, aux_sym_argument_list_repeat1, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47327] = 21, + [41404] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - STATE(810), 1, + ACTIONS(3093), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3342), 2, + [41476] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2790), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym_attribute_specifier, + STATE(1080), 1, + sym_enumerator_list, + ACTIONS(2832), 6, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [47400] = 20, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2830), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [41520] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3095), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3344), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [47471] = 22, + [41592] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3346), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3348), 1, - anon_sym_RBRACE, - STATE(810), 1, + ACTIONS(3097), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - STATE(1813), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47546] = 19, + [41664] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3113), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(3123), 1, + anon_sym_QMARK, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(2615), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [47614] = 13, + [41736] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(810), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3370), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2554), 4, + ACTIONS(3125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41806] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [47670] = 13, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3127), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41876] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3372), 1, - anon_sym_enum, - STATE(1312), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2063), 1, - sym_type_descriptor, - STATE(1263), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(3129), 1, + anon_sym_COLON, + STATE(767), 1, + sym_attribute_specifier, + STATE(1081), 1, + sym_enumerator_list, + ACTIONS(2785), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(2783), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -113591,3495 +94206,3199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47726] = 13, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [41922] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1453), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47782] = 13, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3131), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41992] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1452), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47838] = 16, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3133), 1, + anon_sym_SEMI, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42064] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(2376), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2556), 6, + ACTIONS(2378), 12, 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_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [47900] = 17, + [42116] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3362), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3135), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [47964] = 22, + [42188] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3380), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3382), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3384), 1, - anon_sym_RBRACK, - ACTIONS(3386), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3137), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48038] = 18, + [42260] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3139), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42330] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_SLASH, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3099), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 5, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2378), 10, 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_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [48104] = 21, + [42386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3388), 1, + ACTIONS(3141), 1, anon_sym_SEMI, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48176] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1447), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48232] = 21, + [42458] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3390), 1, + ACTIONS(3143), 1, anon_sym_SEMI, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48304] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1312), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2126), 1, - sym_type_descriptor, - STATE(1290), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48360] = 18, + [42530] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3358), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3145), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [48426] = 11, + [42602] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(810), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3147), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3352), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2554), 6, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42674] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3149), 1, + anon_sym_RPAREN, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [48478] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1450), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48534] = 21, + [42746] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3392), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3151), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48606] = 21, + [42818] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3382), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3153), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48678] = 21, + [42890] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3394), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42962] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3157), 1, + anon_sym_RPAREN, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48750] = 15, + [43034] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2376), 1, + anon_sym_PIPE, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - STATE(810), 1, + ACTIONS(3111), 1, + anon_sym_CARET, + ACTIONS(3113), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3350), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 8, + ACTIONS(2378), 5, 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_RBRACK, anon_sym_QMARK, - [48810] = 21, + [43100] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3396), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48882] = 20, + ACTIONS(3159), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [43170] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3161), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48952] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3372), 1, - anon_sym_enum, - STATE(1312), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2143), 1, - sym_type_descriptor, - STATE(1263), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49008] = 20, + [43242] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_SEMI, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43314] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_SLASH, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3207), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49078] = 21, + ACTIONS(2378), 8, + 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_RBRACK, + anon_sym_QMARK, + [43374] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3400), 1, - anon_sym_SEMI, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49150] = 21, + ACTIONS(3165), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43444] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3402), 1, + ACTIONS(3167), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49222] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1455), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49278] = 20, + [43516] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3169), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3404), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49348] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1456), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49404] = 21, + [43588] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3406), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3171), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49476] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1312), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1933), 1, - sym_type_descriptor, - STATE(1290), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49532] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1448), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49588] = 21, + [43660] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3408), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3173), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49660] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1312), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2022), 1, - sym_type_descriptor, - STATE(1290), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49716] = 21, + [43732] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3410), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2987), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49788] = 12, + [43802] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2554), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 12, + ACTIONS(3119), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2378), 6, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [43864] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_SLASH, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, + anon_sym_AMP_AMP, + ACTIONS(3109), 1, + anon_sym_PIPE, + ACTIONS(3111), 1, + anon_sym_CARET, + ACTIONS(3113), 1, + anon_sym_AMP, + ACTIONS(3123), 1, + anon_sym_QMARK, + ACTIONS(3175), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3177), 1, + anon_sym_RBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3099), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3117), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [49842] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3372), 1, - anon_sym_enum, - STATE(1312), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2214), 1, - sym_type_descriptor, - STATE(1263), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49898] = 21, + [43938] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3412), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3179), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49970] = 21, + [44010] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3414), 1, - anon_sym_SEMI, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50042] = 21, + ACTIONS(2378), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [44078] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3416), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3181), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50114] = 21, + [44150] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2376), 1, + anon_sym_PIPE, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_SLASH, + ACTIONS(3113), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3099), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3117), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3119), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2378), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [44214] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3418), 1, - anon_sym_SEMI, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2549), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50186] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1312), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1999), 1, - sym_type_descriptor, - STATE(1290), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [50242] = 21, + [44286] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3420), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3183), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44358] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_SLASH, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3099), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(2378), 12, + 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_EQ, - ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50314] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [44412] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3185), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3422), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50384] = 21, + [44484] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3424), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50456] = 21, + ACTIONS(3187), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44554] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3426), 1, - anon_sym_SEMI, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50528] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1451), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [50584] = 20, + ACTIONS(2378), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [44620] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3189), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3428), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50654] = 21, + [44692] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2693), 2, + ACTIONS(2585), 2, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - ACTIONS(3350), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50726] = 20, + [44764] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3191), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3430), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50796] = 21, + [44833] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2109), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3432), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50868] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1446), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [50924] = 21, + [44902] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3434), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50996] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1449), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [51052] = 21, + [44971] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2105), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3436), 1, - anon_sym_SEMI, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51124] = 21, + [45040] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3438), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3193), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51196] = 20, + [45109] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3195), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3440), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51266] = 21, + [45178] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3442), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3197), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51338] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1312), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2139), 1, - sym_type_descriptor, - STATE(1290), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [51394] = 21, + [45247] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3199), 1, anon_sym_COMMA, - ACTIONS(3444), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51466] = 21, + [45316] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2097), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2697), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3350), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51538] = 20, + [45385] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3201), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3446), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [51608] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3372), 1, - anon_sym_enum, - STATE(1315), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [51661] = 20, + [45454] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2111), 1, anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51730] = 20, + [45523] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3448), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3203), 1, + anon_sym_RBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51799] = 20, + [45592] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 1, + ACTIONS(2093), 1, anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51868] = 20, + [45661] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2099), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3450), 1, - anon_sym_COLON, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51937] = 20, + [45730] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3452), 1, + ACTIONS(3205), 1, anon_sym_COLON, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52006] = 20, + [45799] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3382), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3207), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52075] = 20, + [45868] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2095), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3454), 1, - anon_sym_COMMA, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52144] = 20, + [45937] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3456), 1, - anon_sym_COLON, - STATE(810), 1, + ACTIONS(3209), 1, + anon_sym_RBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52213] = 20, + [46006] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3458), 1, + ACTIONS(3211), 1, anon_sym_COLON, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52282] = 20, + [46075] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2103), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3460), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3101), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52351] = 20, + [46144] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3462), 1, + ACTIONS(3213), 1, anon_sym_COLON, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52420] = 20, + [46213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 1, + ACTIONS(2101), 1, anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52489] = 12, + [46282] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3124), 1, - sym_identifier, - ACTIONS(3126), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(1909), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1546), 1, - sym__type_declarator, - STATE(2038), 1, - sym_ms_based_modifier, - STATE(1296), 2, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1425), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1075), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, + ACTIONS(3215), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46336] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_const, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1419), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3217), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -117087,184 +97406,533 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52542] = 20, + [46390] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1412), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3219), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2898), 1, + anon_sym_SEMI, + ACTIONS(1724), 7, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3464), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1718), 18, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52611] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2350), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52680] = 20, + anon_sym_DOT, + anon_sym_DASH_GT, + [46480] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1430), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2923), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46534] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3382), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52749] = 12, + [46600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(772), 1, + sym_attribute_specifier, + ACTIONS(2869), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2867), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - ACTIONS(3378), 1, + [46638] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(780), 1, + sym_attribute_specifier, + ACTIONS(2883), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2881), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - STATE(1387), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, + sym_identifier, + [46676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(746), 1, + sym_attribute_specifier, + ACTIONS(2876), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2874), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [46714] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1414), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2804), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46768] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1413), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1074), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3221), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46822] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1264), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46873] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1265), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46924] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, + anon_sym_LPAREN2, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1290), 1, + sym__field_declarator, + STATE(1732), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46975] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1261), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47026] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, + anon_sym_LPAREN2, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1295), 1, + sym__field_declarator, + STATE(1732), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -117275,37 +97943,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52802] = 12, + [47077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1549), 1, - sym__type_declarator, - STATE(2038), 1, + STATE(708), 1, + sym_alignas_qualifier, + STATE(1303), 1, + sym__field_declarator, + STATE(1732), 1, sym_ms_based_modifier, - STATE(1296), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -117316,282 +97982,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52855] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3466), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52924] = 20, + [47128] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2466), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(2470), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2596), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52993] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3468), 1, anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53062] = 20, + ACTIONS(2593), 11, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + [47166] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2673), 1, + sym_primitive_type, + ACTIONS(3223), 1, + sym_identifier, + STATE(1090), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3225), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2667), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3470), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53131] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - ACTIONS(3472), 1, - anon_sym_RBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53200] = 12, + anon_sym_COLON, + ACTIONS(2669), 11, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + [47206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3124), 1, - sym_identifier, - ACTIONS(3126), 1, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3229), 2, anon_sym_LPAREN2, - ACTIONS(3128), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1542), 1, - sym__type_declarator, - STATE(2038), 1, - sym_ms_based_modifier, - STATE(1296), 2, + STATE(1096), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3130), 4, + ACTIONS(3227), 7, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + sym_primitive_type, + sym_identifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -117602,135 +98079,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53253] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2322), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53322] = 20, + [47245] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3233), 2, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3474), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53391] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1315), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1296), 2, + STATE(1095), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3231), 7, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, + sym_primitive_type, + sym_identifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -117741,265 +98111,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53444] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - ACTIONS(3476), 1, - anon_sym_RBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53513] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3478), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53582] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2354), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53651] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3480), 1, - anon_sym_COMMA, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53720] = 20, + [47284] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3482), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2892), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53789] = 5, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(1241), 1, + sym_ms_call_modifier, + STATE(1389), 1, + sym__type_declarator, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47333] = 7, ACTIONS(3), 1, sym_comment, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2631), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3237), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3484), 9, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3235), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -118009,239 +98180,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2629), 10, + [47372] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3241), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3239), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [53828] = 20, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(3245), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + STATE(984), 1, + sym_preproc_argument_list, + ACTIONS(3247), 5, anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3243), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53897] = 20, + [47445] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3487), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2985), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53966] = 20, + ACTIONS(3249), 1, + sym_identifier, + STATE(633), 1, + sym__old_style_function_declarator, + STATE(1269), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1326), 1, + sym__declarator, + STATE(1410), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1590), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47499] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3489), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2985), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54035] = 20, + ACTIONS(3249), 1, + sym_identifier, + STATE(640), 1, + sym__old_style_function_declarator, + STATE(1268), 1, + sym_ms_call_modifier, + STATE(1319), 1, + sym__declarator, + STATE(1322), 1, + sym_function_declarator, + STATE(1400), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1557), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47553] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(650), 1, + sym__old_style_function_declarator, + STATE(1266), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1324), 1, + sym__declarator, + STATE(1401), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1529), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47607] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(642), 1, + sym__old_style_function_declarator, + STATE(1267), 1, + sym_ms_call_modifier, + STATE(1318), 1, + sym__declarator, + STATE(1322), 1, + sym_function_declarator, + STATE(1421), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1538), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47661] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3251), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_RPAREN, + ACTIONS(3259), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3261), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3263), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3267), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3269), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - ACTIONS(3491), 1, - anon_sym_RBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + STATE(1624), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54104] = 8, + [47716] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(3493), 1, - anon_sym_COLON, - STATE(1091), 1, - sym_attribute_specifier, - STATE(1307), 1, - sym_enumerator_list, - ACTIONS(3159), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, + ACTIONS(2985), 1, anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(3157), 16, + ACTIONS(3249), 1, + sym_identifier, + STATE(1271), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1431), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1570), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47767] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1729), 1, + anon_sym_STAR, + ACTIONS(2619), 1, + anon_sym_LPAREN2, + STATE(1124), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3279), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1716), 14, anon_sym___extension__, anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [47802] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2545), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3282), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2543), 14, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -118250,80 +98526,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [54148] = 19, + [47835] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2985), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 1, + sym_identifier, + STATE(1269), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1335), 1, + sym__declarator, + STATE(1410), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1590), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47886] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1258), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1400), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1557), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47937] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3287), 1, + anon_sym_RPAREN, + ACTIONS(3289), 1, + anon_sym_LPAREN2, + ACTIONS(3291), 1, + anon_sym_defined, + ACTIONS(3297), 1, + sym_number_literal, + ACTIONS(3293), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54214] = 7, + ACTIONS(3299), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1102), 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, + [47980] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1275), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1401), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1529), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48031] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3289), 1, + anon_sym_LPAREN2, + ACTIONS(3291), 1, + anon_sym_defined, + ACTIONS(3301), 1, + anon_sym_RPAREN, + ACTIONS(3303), 1, + sym_number_literal, + ACTIONS(3293), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3295), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3299), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1129), 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, + [48074] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1274), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1428), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1641), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48125] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1272), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1453), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1644), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48176] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3289), 1, + anon_sym_LPAREN2, + ACTIONS(3291), 1, + anon_sym_defined, + ACTIONS(3305), 1, + anon_sym_RPAREN, + ACTIONS(3307), 1, + sym_number_literal, + ACTIONS(3293), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3295), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3299), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1116), 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, + [48219] = 5, ACTIONS(3), 1, sym_comment, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3497), 2, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2596), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1303), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3499), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3495), 16, - anon_sym___extension__, - anon_sym___based, + ACTIONS(3309), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2593), 14, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -118332,222 +98838,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [54256] = 7, + [48252] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3164), 1, - anon_sym_LBRACE, - STATE(1088), 1, - sym_attribute_specifier, - STATE(1306), 1, - sym_enumerator_list, - ACTIONS(3202), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, + ACTIONS(2985), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3200), 16, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + ACTIONS(3249), 1, sym_identifier, - [54298] = 4, + STATE(1260), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1421), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1538), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48303] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 1, - anon_sym_SEMI, - ACTIONS(2514), 7, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3251), 1, + anon_sym_COMMA, + ACTIONS(3259), 1, anon_sym_SLASH, + ACTIONS(3261), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3263), 1, + anon_sym_AMP_AMP, + ACTIONS(3265), 1, anon_sym_PIPE, + ACTIONS(3267), 1, + anon_sym_CARET, + ACTIONS(3269), 1, anon_sym_AMP, + ACTIONS(3313), 1, + anon_sym_RPAREN, + STATE(1592), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3271), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2516), 18, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48358] = 5, + ACTIONS(3243), 1, + anon_sym_LF, + ACTIONS(3315), 1, anon_sym_LPAREN2, + ACTIONS(3317), 1, + sym_comment, + STATE(1189), 1, + sym_preproc_argument_list, + ACTIONS(3247), 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, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [54334] = 5, + [48391] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1096), 1, - sym_attribute_specifier, - ACTIONS(3305), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3303), 16, - anon_sym___extension__, + ACTIONS(1783), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [54370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1083), 1, - sym_attribute_specifier, - ACTIONS(3261), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2983), 1, anon_sym_LPAREN2, + ACTIONS(2985), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3259), 16, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + ACTIONS(3249), 1, sym_identifier, - [54406] = 5, + STATE(1267), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1339), 1, + sym__declarator, + STATE(1421), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1538), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48442] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1082), 1, - sym_attribute_specifier, - ACTIONS(3294), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, + ACTIONS(2985), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3292), 16, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + ACTIONS(3249), 1, sym_identifier, - [54442] = 11, + STATE(1277), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1410), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1590), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48493] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(2334), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2336), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1621), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(1313), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2847), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3507), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [54489] = 3, + ACTIONS(3249), 1, + sym_identifier, + STATE(1268), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1334), 1, + sym__declarator, + STATE(1400), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1557), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48544] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 2, + ACTIONS(3319), 1, + sym_identifier, + ACTIONS(3325), 1, + sym_primitive_type, + STATE(1114), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2667), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3509), 21, - anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + ACTIONS(3322), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2669), 12, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -118556,26 +99085,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [54520] = 3, + anon_sym_alignas, + anon_sym__Alignas, + [48581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 2, + STATE(1105), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2601), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3513), 21, - anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + ACTIONS(3328), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2599), 14, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -118584,244 +99111,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [54551] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(2334), 1, - anon_sym_LPAREN2, - ACTIONS(2336), 1, - anon_sym_STAR, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1627), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(1314), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3517), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3507), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [54598] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(2334), 1, - anon_sym_LPAREN2, - ACTIONS(2336), 1, - anon_sym_STAR, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1619), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3257), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3507), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [54645] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(2334), 1, - anon_sym_LPAREN2, - ACTIONS(2336), 1, - anon_sym_STAR, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1646), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3519), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3507), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [54692] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(2334), 1, - anon_sym_LPAREN2, - ACTIONS(2336), 1, - anon_sym_STAR, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1633), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(1316), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3521), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3507), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [54739] = 11, + [48614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(2334), 1, + STATE(1127), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2607), 2, anon_sym_LPAREN2, - ACTIONS(2336), 1, anon_sym_STAR, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1634), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3523), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3507), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [54786] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2913), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(2917), 4, + ACTIONS(3331), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3020), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3017), 9, + ACTIONS(2605), 14, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [54822] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1523), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -118830,66 +99139,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54866] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1498), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [54910] = 10, + [48647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2697), 2, anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1526), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, + anon_sym_STAR, + ACTIONS(3334), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2695), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -118898,32 +99167,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54954] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [48680] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1530), 1, - sym__field_declarator, - STATE(1994), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1266), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1346), 1, + sym__declarator, + STATE(1401), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1529), 1, + sym_init_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48731] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2701), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2699), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -118932,32 +99232,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54998] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [48764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2677), 2, anon_sym_LPAREN2, - ACTIONS(3312), 1, anon_sym_STAR, - STATE(1483), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(3340), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2675), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -118966,32 +99260,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55042] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [48797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + STATE(1126), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2656), 2, anon_sym_LPAREN2, - ACTIONS(3312), 1, anon_sym_STAR, - STATE(1490), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(3343), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2654), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -119000,92 +99288,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55086] = 5, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [48830] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - STATE(1369), 1, - sym_preproc_argument_list, - ACTIONS(3529), 5, + ACTIONS(3251), 1, + anon_sym_COMMA, + ACTIONS(3259), 1, anon_sym_SLASH, + ACTIONS(3261), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3263), 1, + anon_sym_AMP_AMP, + ACTIONS(3265), 1, anon_sym_PIPE, + ACTIONS(3267), 1, + anon_sym_CARET, + ACTIONS(3269), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3525), 15, - anon_sym_COMMA, + ACTIONS(3346), 1, anon_sym_RPAREN, + STATE(1584), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55120] = 7, + [48885] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - sym_primitive_type, - ACTIONS(3531), 1, + ACTIONS(3348), 1, sym_identifier, - STATE(1317), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3533), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2973), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3350), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2975), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [55158] = 10, + ACTIONS(3352), 1, + anon_sym_defined, + ACTIONS(3358), 1, + sym_number_literal, + ACTIONS(3354), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3356), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3360), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1208), 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, + [48925] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3537), 1, - anon_sym_RPAREN, - ACTIONS(3539), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3547), 1, + ACTIONS(3362), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1327), 7, + STATE(1146), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119093,241 +99393,189 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55201] = 16, + [48965] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, - anon_sym_COMMA, - ACTIONS(3553), 1, - anon_sym_RPAREN, - ACTIONS(3559), 1, + ACTIONS(3259), 1, anon_sym_SLASH, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_AMP_AMP, - ACTIONS(3565), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3567), 1, + ACTIONS(3267), 1, anon_sym_CARET, - ACTIONS(3569), 1, + ACTIONS(3269), 1, anon_sym_AMP, - STATE(1795), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3555), 2, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3571), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3573), 2, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3575), 2, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3577), 2, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55256] = 16, + ACTIONS(3364), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [49011] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, - anon_sym_COMMA, - ACTIONS(3559), 1, + ACTIONS(3259), 1, anon_sym_SLASH, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3263), 1, anon_sym_AMP_AMP, - ACTIONS(3565), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3567), 1, + ACTIONS(3267), 1, anon_sym_CARET, - ACTIONS(3569), 1, + ACTIONS(3269), 1, anon_sym_AMP, - ACTIONS(3579), 1, - anon_sym_RPAREN, - STATE(1751), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3555), 2, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3571), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3573), 2, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3575), 2, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3577), 2, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55311] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(3539), 1, - anon_sym_LPAREN2, - ACTIONS(3541), 1, - anon_sym_defined, - ACTIONS(3581), 1, + ACTIONS(3364), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3583), 1, - sym_number_literal, - ACTIONS(3543), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3549), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1330), 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, - [55354] = 16, + anon_sym_PIPE_PIPE, + [49059] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, - anon_sym_COMMA, - ACTIONS(3559), 1, + ACTIONS(3259), 1, anon_sym_SLASH, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_AMP_AMP, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, + ACTIONS(3269), 1, anon_sym_AMP, - ACTIONS(3585), 1, - anon_sym_RPAREN, - STATE(1798), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3555), 2, + ACTIONS(3366), 1, + anon_sym_PIPE, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3571), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3573), 2, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3575), 2, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3577), 2, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55409] = 5, - ACTIONS(3525), 1, - anon_sym_LF, - ACTIONS(3587), 1, - anon_sym_LPAREN2, - ACTIONS(3589), 1, + ACTIONS(3364), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [49103] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1428), 1, - sym_preproc_argument_list, - ACTIONS(3529), 18, + ACTIONS(3366), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3364), 15, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [55442] = 10, + [49131] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(3539), 1, - anon_sym_LPAREN2, - ACTIONS(3541), 1, - anon_sym_defined, - ACTIONS(3591), 1, - anon_sym_RPAREN, - ACTIONS(3593), 1, - sym_number_literal, - ACTIONS(3543), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1328), 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, - [55485] = 9, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3271), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3366), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3364), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [49173] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3605), 1, + ACTIONS(3368), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1408), 7, + STATE(1190), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119335,16 +99583,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55525] = 3, + [49213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 5, + ACTIONS(3372), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3609), 15, + ACTIONS(3370), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -119360,272 +99608,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [55553] = 3, + [49241] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2486), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2488), 15, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(1363), 1, + sym__declarator, + STATE(1443), 1, + sym_parameter_list, + STATE(1456), 1, + sym__abstract_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(3374), 2, anon_sym_COMMA, anon_sym_RPAREN, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [49289] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3366), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3364), 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, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55581] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(3539), 1, - anon_sym_LPAREN2, - ACTIONS(3541), 1, - anon_sym_defined, - ACTIONS(3613), 1, - sym_number_literal, - ACTIONS(3543), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3549), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1377), 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, - [55621] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3597), 1, - anon_sym_LPAREN2, - ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3615), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1400), 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, - [55661] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(3539), 1, - anon_sym_LPAREN2, - ACTIONS(3541), 1, - anon_sym_defined, - ACTIONS(3617), 1, - sym_number_literal, - ACTIONS(3543), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3549), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1378), 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, - [55701] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(3539), 1, - anon_sym_LPAREN2, - ACTIONS(3541), 1, - anon_sym_defined, - ACTIONS(3619), 1, - sym_number_literal, - ACTIONS(3543), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3549), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1376), 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, - [55741] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3597), 1, - anon_sym_LPAREN2, - ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3621), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1423), 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, - [55781] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3597), 1, - anon_sym_LPAREN2, - ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3623), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1438), 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, - [55821] = 9, + [49329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3597), 1, - anon_sym_LPAREN2, - ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3625), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3366), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3364), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1422), 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, - [55861] = 9, + 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, + [49361] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3627), 1, + ACTIONS(3376), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1425), 7, + STATE(1191), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119633,97 +99732,148 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55901] = 9, + [49401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3597), 1, - anon_sym_LPAREN2, - ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3629), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3380), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3378), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1420), 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, - [55941] = 14, + anon_sym_STAR, + 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, + [49429] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3259), 1, anon_sym_SLASH, - ACTIONS(3561), 1, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3366), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3364), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, anon_sym_AMP_AMP, - ACTIONS(3565), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [49465] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3366), 4, anon_sym_PIPE, - ACTIONS(3567), 1, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3364), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - ACTIONS(3569), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49499] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3261), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3263), 1, + anon_sym_AMP_AMP, + ACTIONS(3265), 1, + anon_sym_PIPE, + ACTIONS(3267), 1, + anon_sym_CARET, + ACTIONS(3269), 1, anon_sym_AMP, - ACTIONS(3555), 2, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3571), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3573), 2, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3575), 2, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3577), 2, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3631), 2, + ACTIONS(3382), 2, anon_sym_COMMA, anon_sym_RPAREN, - [55991] = 9, + [49549] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3633), 1, + ACTIONS(3384), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1410), 7, + STATE(1197), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119731,30 +99881,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56031] = 9, + [49589] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3635), 1, + ACTIONS(3386), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1417), 7, + STATE(1216), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119762,30 +99912,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56071] = 9, + [49629] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3637), 1, + ACTIONS(3388), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1415), 7, + STATE(1141), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119793,65 +99943,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56111] = 13, + [49669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym_LPAREN2, - ACTIONS(2091), 1, - anon_sym_STAR, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1597), 1, - sym__declarator, - STATE(1647), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(2001), 1, - sym_ms_based_modifier, - ACTIONS(3639), 2, + ACTIONS(3392), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3390), 15, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [56159] = 9, + 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, + [49697] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3641), 1, + ACTIONS(3394), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1403), 7, + STATE(1201), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119859,30 +99999,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56199] = 9, + [49737] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3643), 1, + ACTIONS(3396), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1414), 7, + STATE(1187), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119890,30 +100030,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56239] = 9, + [49777] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3645), 1, + ACTIONS(3398), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1382), 7, + STATE(1209), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119921,30 +100061,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56279] = 9, + [49817] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3647), 1, + ACTIONS(3400), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1406), 7, + STATE(1207), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119952,55 +100092,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3651), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3649), 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, - [56347] = 9, + [49857] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3653), 1, + ACTIONS(3402), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1413), 7, + STATE(1135), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120008,30 +100123,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56387] = 9, + [49897] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3655), 1, + ACTIONS(3404), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1367), 7, + STATE(1220), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120039,30 +100154,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56427] = 9, + [49937] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3657), 1, + ACTIONS(3406), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1412), 7, + STATE(1224), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120070,30 +100185,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56467] = 9, + [49977] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3659), 1, + ACTIONS(3408), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1375), 7, + STATE(1192), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120101,30 +100216,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56507] = 9, + [50017] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3661), 1, + ACTIONS(3410), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1374), 7, + STATE(1133), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120132,30 +100247,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56547] = 9, + [50057] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3663), 1, + ACTIONS(3412), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1407), 7, + STATE(1193), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120163,30 +100278,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56587] = 9, + [50097] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3267), 1, + anon_sym_CARET, + ACTIONS(3269), 1, + anon_sym_AMP, + ACTIONS(3366), 1, + anon_sym_PIPE, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3271), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3364), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [50143] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3665), 1, + ACTIONS(3414), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1405), 7, + STATE(1132), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120194,30 +100343,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56627] = 9, + [50183] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3667), 1, + ACTIONS(3416), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1439), 7, + STATE(1199), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120225,30 +100374,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56667] = 9, + [50223] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3669), 1, + ACTIONS(3418), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1432), 7, + STATE(1204), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120256,80 +100405,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3671), 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, - [56735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3677), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3675), 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, - [56763] = 9, + [50263] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3679), 1, + ACTIONS(3420), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1372), 7, + STATE(1143), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120337,203 +100436,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56803] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3683), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3681), 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, - [56835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3681), 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, - [56863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3685), 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, - [56891] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3691), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3689), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [56923] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3563), 1, - anon_sym_AMP_AMP, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3681), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [56971] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3683), 1, - anon_sym_PIPE, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3681), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [57017] = 9, + [50303] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3693), 1, + ACTIONS(3422), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1345), 7, + STATE(1222), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120541,183 +100467,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57057] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3683), 1, - anon_sym_PIPE, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3681), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [57101] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3683), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3681), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [57143] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3683), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3681), 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, - [57183] = 7, + [50343] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3555), 2, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3289), 1, + anon_sym_LPAREN2, + ACTIONS(3291), 1, + anon_sym_defined, + ACTIONS(3424), 1, + sym_number_literal, + ACTIONS(3293), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3683), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3681), 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, - [57219] = 6, + ACTIONS(3299), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1203), 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, + [50383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3555), 2, + ACTIONS(3348), 1, + sym_identifier, + ACTIONS(3350), 1, + anon_sym_LPAREN2, + ACTIONS(3352), 1, + anon_sym_defined, + ACTIONS(3426), 1, + sym_number_literal, + ACTIONS(3354), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3683), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3681), 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, - [57253] = 9, + ACTIONS(3360), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1186), 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, + [50423] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3695), 1, + ACTIONS(3428), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1392), 7, + STATE(1161), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120725,30 +100560,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57293] = 9, + [50463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3697), 1, + ACTIONS(3430), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1371), 7, + STATE(1221), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120756,30 +100591,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57333] = 9, + [50503] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3699), 1, + ACTIONS(3432), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1368), 7, + STATE(1134), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120787,41 +100622,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57373] = 3, + [50543] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3701), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3289), 1, + anon_sym_LPAREN2, + ACTIONS(3291), 1, + anon_sym_defined, + ACTIONS(3434), 1, + sym_number_literal, + ACTIONS(3293), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3295), 2, 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, - [57401] = 3, + ACTIONS(3299), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1223), 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, + [50583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 5, + ACTIONS(3438), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3705), 15, + ACTIONS(3436), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -120837,30 +100678,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57429] = 9, + [50611] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3709), 1, + ACTIONS(3440), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1418), 7, + STATE(1198), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120868,57 +100709,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57469] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3713), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3711), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [57501] = 9, + [50651] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3715), 1, + ACTIONS(3442), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1424), 7, + STATE(1202), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120926,57 +100740,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57541] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3719), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1385), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3717), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [57573] = 9, + [50691] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3721), 1, + ACTIONS(3444), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1443), 7, + STATE(1194), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120984,30 +100771,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57613] = 9, + [50731] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3723), 1, + ACTIONS(3446), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1436), 7, + STATE(1136), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121015,30 +100802,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57653] = 9, + [50771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3725), 1, + ACTIONS(3448), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1444), 7, + STATE(1140), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121046,30 +100833,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57693] = 9, + [50811] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3727), 1, + ACTIONS(3450), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1401), 7, + STATE(1144), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121077,64 +100864,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57733] = 12, + [50851] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3555), 2, + ACTIONS(3348), 1, + sym_identifier, + ACTIONS(3350), 1, + anon_sym_LPAREN2, + ACTIONS(3352), 1, + anon_sym_defined, + ACTIONS(3452), 1, + sym_number_literal, + ACTIONS(3354), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3681), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [57779] = 9, + ACTIONS(3360), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1215), 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, + [50891] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3729), 1, + ACTIONS(3454), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1411), 7, + STATE(1145), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121142,30 +100926,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57819] = 9, + [50931] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3731), 1, + ACTIONS(3456), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1421), 7, + STATE(1217), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121173,43 +100957,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57859] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1370), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3733), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [57891] = 3, + [50971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 5, + ACTIONS(2336), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3737), 15, + ACTIONS(2338), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -121225,30 +100982,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57919] = 9, + [50999] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3741), 1, + ACTIONS(3458), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1409), 7, + STATE(1206), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121256,30 +101013,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57959] = 9, + [51039] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3743), 1, + ACTIONS(3460), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1431), 7, + STATE(1210), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121287,12 +101044,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57999] = 3, - ACTIONS(3589), 1, + [51079] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3651), 18, + ACTIONS(3366), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -121311,169 +101068,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58026] = 12, - ACTIONS(3589), 1, + [51106] = 8, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3745), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3751), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, - anon_sym_AMP_AMP, - ACTIONS(3755), 1, - anon_sym_PIPE, - ACTIONS(3757), 1, - anon_sym_CARET, - ACTIONS(3759), 1, - anon_sym_AMP, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58071] = 12, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3751), 1, + ACTIONS(3366), 5, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3759), 1, anon_sym_AMP, - ACTIONS(3767), 1, + [51143] = 3, + ACTIONS(3059), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3057), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [58116] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3020), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3769), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3017), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [58147] = 12, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3759), 1, anon_sym_AMP, - ACTIONS(3773), 1, - anon_sym_LF, - ACTIONS(3747), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58192] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2999), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3775), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2997), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [58223] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3681), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51170] = 3, + ACTIONS(3041), 1, anon_sym_LF, - ACTIONS(3749), 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3039), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3683), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121487,50 +101145,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58252] = 12, - ACTIONS(3589), 1, + [51197] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3472), 1, + anon_sym_LF, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3778), 1, - anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58297] = 3, - ACTIONS(3589), 1, + [51242] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3683), 18, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3366), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121544,268 +101204,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58324] = 12, - ACTIONS(3589), 1, + [51273] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3681), 1, - anon_sym_LF, - ACTIONS(3683), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3747), 2, + ACTIONS(3484), 1, + anon_sym_LF, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58369] = 12, - ACTIONS(3589), 1, + [51318] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3780), 1, + ACTIONS(3486), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58414] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_AMP_AMP, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3782), 1, - anon_sym_RPAREN, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58463] = 12, - ACTIONS(3589), 1, + [51363] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3784), 1, + ACTIONS(3488), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58508] = 11, - ACTIONS(3589), 1, + [51408] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3436), 1, anon_sym_LF, - ACTIONS(3755), 1, - anon_sym_PIPE, - ACTIONS(3757), 1, - anon_sym_CARET, - ACTIONS(3759), 1, - anon_sym_AMP, - ACTIONS(3683), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3747), 2, + ACTIONS(3438), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + 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, - [58551] = 10, - ACTIONS(3589), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51435] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3370), 1, anon_sym_LF, - ACTIONS(3757), 1, - anon_sym_CARET, - ACTIONS(3759), 1, - anon_sym_AMP, - ACTIONS(3747), 2, + ACTIONS(3372), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3683), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + 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, - [58592] = 9, - ACTIONS(3589), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51462] = 6, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3759), 1, - anon_sym_AMP, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3683), 4, + ACTIONS(3366), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3763), 4, + 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, - [58631] = 8, - ACTIONS(3589), 1, + [51495] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3490), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3683), 5, + [51540] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3378), 1, + anon_sym_LF, + ACTIONS(3380), 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, - [58668] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3609), 1, + 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, + [51567] = 3, + ACTIONS(2338), 1, anon_sym_LF, - ACTIONS(3611), 18, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(2336), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -121824,27 +101459,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58695] = 7, - ACTIONS(3589), 1, + [51594] = 7, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3683), 7, + ACTIONS(3366), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121852,138 +101487,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [58730] = 12, - ACTIONS(3589), 1, + [51629] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3786), 1, + ACTIONS(3492), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58775] = 5, + [51674] = 14, ACTIONS(3), 1, sym_comment, - STATE(1404), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3100), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3788), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3098), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [58806] = 6, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3681), 1, - anon_sym_LF, - ACTIONS(3747), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, - anon_sym_STAR, + ACTIONS(3259), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3683), 11, + ACTIONS(3261), 1, anon_sym_PIPE_PIPE, + ACTIONS(3263), 1, anon_sym_AMP_AMP, + ACTIONS(3265), 1, anon_sym_PIPE, + ACTIONS(3267), 1, anon_sym_CARET, + ACTIONS(3269), 1, anon_sym_AMP, + ACTIONS(3494), 1, + anon_sym_RPAREN, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3273), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [58839] = 12, - ACTIONS(3589), 1, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51723] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3791), 1, + ACTIONS(3496), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58884] = 5, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3681), 1, + [51768] = 3, + ACTIONS(3037), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3035), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3683), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121997,209 +101612,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58915] = 12, - ACTIONS(3589), 1, + [51795] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3793), 1, + ACTIONS(3498), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58960] = 12, - ACTIONS(3589), 1, + [51840] = 10, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, - anon_sym_AMP_AMP, - ACTIONS(3755), 1, - anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3364), 1, + anon_sym_LF, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3795), 1, - anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3366), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59005] = 12, - ACTIONS(3589), 1, + [51881] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3797), 1, + ACTIONS(3500), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59050] = 3, - ACTIONS(3589), 1, + [51926] = 9, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3677), 18, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3466), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3366), 4, 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, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59077] = 3, - ACTIONS(3589), 1, + [51965] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3671), 1, - anon_sym_LF, - ACTIONS(3673), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, anon_sym_AMP_AMP, + ACTIONS(3478), 1, anon_sym_PIPE, + ACTIONS(3480), 1, anon_sym_CARET, + ACTIONS(3482), 1, anon_sym_AMP, + ACTIONS(3502), 1, + anon_sym_LF, + ACTIONS(3462), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [59104] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_LF, - ACTIONS(3687), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3464), 3, 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, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59131] = 5, + [52010] = 11, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2966), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3799), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2964), 12, - anon_sym___extension__, + ACTIONS(1783), 1, anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + ACTIONS(2794), 1, sym_identifier, - [59162] = 3, - ACTIONS(2488), 1, - anon_sym_LF, - ACTIONS(3589), 1, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(644), 1, + sym__old_style_function_declarator, + STATE(1281), 1, + sym_ms_call_modifier, + STATE(1344), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52053] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(2486), 18, + ACTIONS(3390), 1, + anon_sym_LF, + ACTIONS(3392), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122218,118 +101828,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59189] = 14, - ACTIONS(3), 1, + [52080] = 3, + ACTIONS(3055), 1, + anon_sym_LF, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_AMP_AMP, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3802), 1, - anon_sym_RPAREN, - ACTIONS(3555), 2, + ACTIONS(3053), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59238] = 12, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3759), 1, anon_sym_AMP, - ACTIONS(3804), 1, - anon_sym_LF, - ACTIONS(3747), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59283] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52107] = 8, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3015), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3013), 12, - anon_sym___extension__, - anon_sym___based, + ACTIONS(2783), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59314] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1967), 1, - anon_sym_STAR, - ACTIONS(3091), 1, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(3506), 1, + anon_sym_COLON, + STATE(767), 1, + sym_attribute_specifier, + STATE(1081), 1, + sym_enumerator_list, + ACTIONS(2785), 13, anon_sym_LPAREN2, - STATE(1429), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3809), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1951), 12, + anon_sym_STAR, anon_sym___extension__, - anon_sym___based, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -122337,281 +101879,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59347] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3737), 1, - anon_sym_LF, - ACTIONS(3739), 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, - [59374] = 12, - ACTIONS(3589), 1, + anon_sym_alignas, + anon_sym__Alignas, + [52144] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3812), 1, + ACTIONS(3509), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59419] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3041), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3814), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3039), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59450] = 12, - ACTIONS(3589), 1, + [52189] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3817), 1, + ACTIONS(3511), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59495] = 12, - ACTIONS(3589), 1, + [52234] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3819), 1, + ACTIONS(3513), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59540] = 5, + [52279] = 11, ACTIONS(3), 1, sym_comment, - STATE(1433), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3035), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3821), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3033), 12, - anon_sym___extension__, + ACTIONS(1783), 1, anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + ACTIONS(2794), 1, sym_identifier, - [59571] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1437), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3029), 2, + ACTIONS(2983), 1, anon_sym_LPAREN2, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3824), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3027), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59602] = 7, + STATE(649), 1, + sym__old_style_function_declarator, + STATE(1299), 1, + sym_ms_call_modifier, + STATE(1332), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52322] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3833), 1, - sym_primitive_type, - STATE(1402), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2973), 2, + ACTIONS(2983), 1, anon_sym_LPAREN2, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3830), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2975), 10, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [59637] = 12, - ACTIONS(3589), 1, + STATE(648), 1, + sym__old_style_function_declarator, + STATE(1298), 1, + sym_ms_call_modifier, + STATE(1330), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52365] = 11, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3751), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, - anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3364), 1, + anon_sym_LF, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3836), 1, - anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3366), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59682] = 3, - ACTIONS(3589), 1, + [52408] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3701), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3703), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3366), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -122625,1166 +102101,797 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59709] = 3, - ACTIONS(3589), 1, + [52437] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3705), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3707), 18, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3466), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3468), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [52482] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3261), 1, anon_sym_PIPE_PIPE, + ACTIONS(3263), 1, anon_sym_AMP_AMP, + ACTIONS(3265), 1, anon_sym_PIPE, + ACTIONS(3267), 1, anon_sym_CARET, + ACTIONS(3269), 1, anon_sym_AMP, + ACTIONS(3515), 1, + anon_sym_RPAREN, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3273), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52531] = 12, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3517), 1, + anon_sym_LF, + ACTIONS(3462), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3466), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [59736] = 11, + ACTIONS(3464), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3468), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [52576] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1544), 1, - sym__type_declarator, - STATE(1689), 1, - sym__type_definition_declarators, - STATE(2038), 1, + STATE(638), 1, + sym__old_style_function_declarator, + STATE(1283), 1, + sym_ms_call_modifier, + STATE(1343), 1, + sym__declarator, + STATE(1827), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [59777] = 11, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52619] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1544), 1, - sym__type_declarator, - STATE(1665), 1, - sym__type_definition_declarators, - STATE(2038), 1, + STATE(1283), 1, + sym_ms_call_modifier, + STATE(1350), 1, + sym__declarator, + STATE(1827), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [59818] = 11, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52659] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(1299), 1, + sym_ms_call_modifier, + STATE(1366), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52699] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1544), 1, - sym__type_declarator, - STATE(1703), 1, - sym__type_definition_declarators, - STATE(2038), 1, + STATE(1298), 1, + sym_ms_call_modifier, + STATE(1374), 1, + sym__declarator, + STATE(1827), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [59859] = 11, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52739] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1544), 1, - sym__type_declarator, - STATE(1717), 1, - sym__type_definition_declarators, - STATE(2038), 1, + STATE(1281), 1, + sym_ms_call_modifier, + STATE(1362), 1, + sym__declarator, + STATE(1827), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [59900] = 11, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52779] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1544), 1, - sym__type_declarator, - STATE(1734), 1, - sym__type_definition_declarators, - STATE(2038), 1, + STATE(1293), 1, + sym_ms_call_modifier, + STATE(1394), 1, + sym__field_declarator, + STATE(1732), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [59941] = 11, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52819] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3124), 1, - sym_identifier, - ACTIONS(3126), 1, + ACTIONS(1779), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(1781), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1544), 1, - sym__type_declarator, - STATE(1680), 1, - sym__type_definition_declarators, - STATE(2038), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(1381), 1, + sym__declarator, + STATE(1443), 1, + sym_parameter_list, + STATE(1477), 1, + sym__abstract_declarator, + STATE(1827), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [59982] = 11, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [52863] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1544), 1, - sym__type_declarator, - STATE(1702), 1, - sym__type_definition_declarators, - STATE(2038), 1, + STATE(1288), 1, + sym_ms_call_modifier, + STATE(1386), 1, + sym__declarator, + STATE(1827), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [60023] = 11, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52903] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1720), 1, + STATE(1462), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60064] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 1, - anon_sym_const, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(3840), 1, - anon_sym_COLON, - STATE(1091), 1, - sym_attribute_specifier, - STATE(1307), 1, - sym_enumerator_list, - ACTIONS(3159), 11, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [60099] = 11, + [52944] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1726), 1, + STATE(1461), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60140] = 11, + [52985] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1715), 1, + STATE(1475), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60181] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3845), 1, - anon_sym_LPAREN2, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - STATE(147), 1, - sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60229] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3845), 1, - anon_sym_LPAREN2, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - STATE(365), 1, - sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60277] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3845), 1, - anon_sym_LPAREN2, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - STATE(478), 1, - sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60325] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3845), 1, - anon_sym_LPAREN2, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - STATE(399), 1, - sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60373] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3845), 1, - anon_sym_LPAREN2, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - STATE(213), 1, - sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60421] = 10, + [53026] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1611), 1, + STATE(1325), 1, sym__type_declarator, - STATE(2038), 1, + STATE(1491), 1, + sym__type_definition_declarators, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60459] = 10, + [53067] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1557), 1, + STATE(1325), 1, sym__type_declarator, - STATE(2038), 1, + STATE(1481), 1, + sym__type_definition_declarators, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60497] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(399), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60542] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(147), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60587] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - ACTIONS(3857), 1, - anon_sym_SEMI, - STATE(1514), 1, - sym__field_declarator, - STATE(1746), 1, - sym__field_declaration_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(2224), 1, - sym_attribute_specifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60628] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(365), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60673] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - ACTIONS(3859), 1, - anon_sym_SEMI, - STATE(1514), 1, - sym__field_declarator, - STATE(1828), 1, - sym__field_declaration_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(2076), 1, - sym_attribute_specifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60714] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - ACTIONS(3861), 1, - anon_sym_SEMI, - STATE(1514), 1, - sym__field_declarator, - STATE(1779), 1, - sym__field_declaration_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(2005), 1, - sym_attribute_specifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60755] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - ACTIONS(3863), 1, - anon_sym_SEMI, - STATE(1514), 1, - sym__field_declarator, - STATE(1772), 1, - sym__field_declaration_declarator, - STATE(1993), 1, - sym_attribute_specifier, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60796] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(213), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60841] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(478), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60886] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 1, - sym_identifier, - ACTIONS(3867), 1, - aux_sym_preproc_if_token2, - ACTIONS(3869), 1, - aux_sym_preproc_else_token1, - ACTIONS(3871), 1, - aux_sym_preproc_elif_token1, - STATE(1528), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1534), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1609), 1, - sym_enumerator, - ACTIONS(3873), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2039), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(2040), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [60925] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(805), 1, - sym__old_style_function_declarator, - STATE(1460), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1959), 1, - sym__declaration_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [60963] = 11, + [53108] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2892), 1, anon_sym_STAR, - STATE(803), 1, - sym__old_style_function_declarator, - STATE(1458), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1940), 1, - sym__declaration_declarator, - STATE(2001), 1, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(1325), 1, + sym__type_declarator, + STATE(1483), 1, + sym__type_definition_declarators, + STATE(1842), 1, sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61001] = 11, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [53149] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2892), 1, anon_sym_STAR, - STATE(826), 1, - sym__old_style_function_declarator, - STATE(1457), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(1325), 1, + sym__type_declarator, + STATE(1498), 1, + sym__type_definition_declarators, + STATE(1842), 1, sym_ms_based_modifier, - STATE(2170), 1, - sym__declaration_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61039] = 11, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [53190] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2892), 1, anon_sym_STAR, - STATE(827), 1, - sym__old_style_function_declarator, - STATE(1459), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(1325), 1, + sym__type_declarator, + STATE(1469), 1, + sym__type_definition_declarators, + STATE(1842), 1, sym_ms_based_modifier, - STATE(2002), 1, - sym__declaration_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61077] = 11, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [53231] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2892), 1, anon_sym_STAR, - STATE(814), 1, - sym__old_style_function_declarator, - STATE(1461), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1934), 1, - sym__declaration_declarator, - STATE(2001), 1, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(1376), 1, + sym__type_declarator, + STATE(1842), 1, sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61115] = 5, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [53269] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3880), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3519), 1, + sym_identifier, + ACTIONS(3523), 1, anon_sym_LBRACK, - STATE(1479), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3875), 10, + STATE(1255), 1, + sym_gnu_asm_expression, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1246), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3521), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [61141] = 7, + [53303] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, + anon_sym_LPAREN2, + ACTIONS(2892), 1, + anon_sym_STAR, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(1345), 1, + sym__type_declarator, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [53341] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3884), 1, + ACTIONS(3519), 1, + sym_identifier, + ACTIONS(3523), 1, anon_sym_LBRACK, - STATE(1492), 1, + STATE(1245), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1485), 2, + STATE(1285), 1, sym_attribute_specifier, + STATE(1398), 1, aux_sym_type_definition_repeat1, - ACTIONS(3882), 7, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3525), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + STATE(1246), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(3521), 4, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [61171] = 12, + [53381] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3843), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3519), 1, + sym_identifier, + ACTIONS(3531), 1, + anon_sym_LBRACK, + STATE(1285), 1, + sym_attribute_specifier, + STATE(1390), 1, + aux_sym_type_definition_repeat1, + ACTIONS(3527), 2, anon_sym_COMMA, - ACTIONS(3847), 1, anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, + ACTIONS(3533), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [61210] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + STATE(1249), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(3529), 4, anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1481), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(2170), 1, - sym__declaration_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61245] = 7, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3519), 1, + sym_identifier, + ACTIONS(3531), 3, anon_sym_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3886), 7, + anon_sym_asm, + anon_sym___asm__, + STATE(1248), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3529), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61274] = 10, + [53447] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(1464), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1959), 1, - sym__declaration_declarator, - STATE(2001), 1, + ACTIONS(3535), 1, + anon_sym_SEMI, + STATE(1279), 1, + sym__field_declarator, + STATE(1526), 1, + sym__field_declaration_declarator, + STATE(1732), 1, sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61309] = 5, + STATE(1857), 1, + sym_attribute_specifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3537), 1, + sym_identifier, + ACTIONS(3542), 1, anon_sym___attribute__, - ACTIONS(3890), 1, + ACTIONS(3545), 3, anon_sym_LBRACK, - STATE(1487), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1248), 3, + sym_preproc_call_expression, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3888), 9, + aux_sym_function_declarator_repeat1, + ACTIONS(3540), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -123792,44 +102899,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + [53517] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3519), 1, + sym_identifier, + ACTIONS(3549), 3, + anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - [61334] = 10, + STATE(1248), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3547), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53546] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3553), 1, + aux_sym_preproc_if_token2, + ACTIONS(3555), 1, + aux_sym_preproc_else_token1, + ACTIONS(3557), 1, + aux_sym_preproc_elif_token1, + STATE(1294), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1296), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1388), 1, + sym_enumerator, + ACTIONS(3559), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1895), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(1896), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [53585] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3555), 1, + aux_sym_preproc_else_token1, + ACTIONS(3557), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3561), 1, + aux_sym_preproc_if_token2, + STATE(1300), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1301), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1388), 1, + sym_enumerator, + ACTIONS(3559), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1925), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + STATE(1931), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [53624] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3555), 1, + aux_sym_preproc_else_token1, + ACTIONS(3557), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3563), 1, + aux_sym_preproc_if_token2, + STATE(1282), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1302), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1388), 1, + sym_enumerator, + ACTIONS(3559), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1859), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(1861), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [53663] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(1481), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, + ACTIONS(3565), 1, + anon_sym_SEMI, + STATE(1279), 1, + sym__field_declarator, + STATE(1640), 1, + sym__field_declaration_declarator, + STATE(1732), 1, sym_ms_based_modifier, - STATE(2011), 1, - sym__declaration_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61369] = 5, + STATE(1917), 1, + sym_attribute_specifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53704] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3555), 1, + aux_sym_preproc_else_token1, + ACTIONS(3557), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3567), 1, + aux_sym_preproc_if_token2, + STATE(1305), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1306), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1388), 1, + sym_enumerator, + ACTIONS(3559), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1742), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(1750), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [53743] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3897), 1, + ACTIONS(3519), 1, + sym_identifier, + ACTIONS(3531), 3, anon_sym_LBRACK, - STATE(1487), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1249), 3, + sym_preproc_call_expression, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3892), 9, + aux_sym_function_declarator_repeat1, + ACTIONS(3529), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -123837,259 +103086,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61394] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1467), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1940), 1, - sym__declaration_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61429] = 10, + [53772] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(1481), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, + ACTIONS(3569), 1, + anon_sym_SEMI, + STATE(1279), 1, + sym__field_declarator, + STATE(1606), 1, + sym__field_declaration_declarator, + STATE(1732), 1, sym_ms_based_modifier, - STATE(2002), 1, - sym__declaration_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61464] = 7, + STATE(1934), 1, + sym_attribute_specifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53813] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(3573), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, + ACTIONS(3576), 1, anon_sym_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1512), 2, + STATE(1257), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3899), 7, + ACTIONS(3571), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [61493] = 10, + [53839] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1481), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1422), 1, sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1934), 1, + STATE(1423), 1, sym__declaration_declarator, - STATE(2001), 1, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61528] = 5, + [53876] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(3890), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1494), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3888), 9, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3578), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61553] = 10, + [53905] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1481), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1422), 1, sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1959), 1, + STATE(1424), 1, sym__declaration_declarator, - STATE(2001), 1, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61588] = 5, + [53942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(3903), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3901), 9, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3584), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61613] = 9, + [53971] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3905), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3907), 1, + ACTIONS(3588), 1, aux_sym_preproc_if_token1, - ACTIONS(3911), 1, + ACTIONS(3592), 1, anon_sym_RBRACE, - ACTIONS(3909), 2, + ACTIONS(3590), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1888), 2, + STATE(1665), 2, sym_preproc_call, sym_enumerator, - STATE(1992), 2, + STATE(1922), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1535), 3, + STATE(1276), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [61646] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1471), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1934), 1, - sym__declaration_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61681] = 10, + [54004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2828), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2821), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1472), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(2002), 1, - sym__declaration_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61716] = 7, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [54025] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(1480), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(1242), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3913), 7, + ACTIONS(3594), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -124097,21 +103296,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61745] = 7, + [54054] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(1480), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(1242), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3915), 7, + ACTIONS(3596), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -124119,811 +103318,1017 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61774] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3907), 1, - aux_sym_preproc_if_token1, - ACTIONS(3917), 1, - anon_sym_RBRACE, - ACTIONS(3909), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1866), 2, - sym_preproc_call, - sym_enumerator, - STATE(2098), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1495), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [61807] = 10, + [54083] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1465), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(2170), 1, - sym__declaration_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61842] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(3249), 1, sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1481), 1, + STATE(1322), 1, + sym_function_declarator, + STATE(1356), 1, sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1940), 1, + STATE(1429), 1, sym__declaration_declarator, - STATE(2001), 1, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61877] = 10, + [54120] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1481), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1355), 1, sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(2102), 1, + STATE(1424), 1, sym__declaration_declarator, - STATE(1537), 5, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61912] = 9, + [54157] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(804), 1, - sym__old_style_function_declarator, - STATE(1552), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1373), 1, sym__declarator, - STATE(2001), 1, + STATE(1423), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61944] = 9, + [54194] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(829), 1, - sym__old_style_function_declarator, - STATE(1558), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1371), 1, sym__declarator, - STATE(2001), 1, + STATE(1418), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61976] = 3, + [54231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 1, + ACTIONS(3245), 1, + anon_sym_LPAREN2, + STATE(984), 1, + sym_preproc_argument_list, + ACTIONS(3598), 5, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(2877), 11, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3600), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [61996] = 9, + [54256] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(794), 1, - sym__old_style_function_declarator, - STATE(1554), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1422), 1, sym__declarator, - STATE(2001), 1, + STATE(1427), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [62028] = 9, + [54293] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(812), 1, - sym__old_style_function_declarator, - STATE(1561), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1422), 1, sym__declarator, - STATE(2001), 1, + STATE(1441), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [62060] = 10, + [54330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, + ACTIONS(2816), 5, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1832), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3919), 2, + sym_identifier, + ACTIONS(2809), 8, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [62094] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [54351] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1509), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1422), 1, sym__declarator, - STATE(1880), 1, - sym_init_declarator, - STATE(2001), 1, + STATE(1434), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [62126] = 9, + [54388] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(818), 1, - sym__old_style_function_declarator, - STATE(1555), 1, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1422), 1, sym__declarator, - STATE(2001), 1, + STATE(1429), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [62158] = 5, + [54425] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3923), 1, - anon_sym_LBRACK, - STATE(1479), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3921), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3588), 1, + aux_sym_preproc_if_token1, + ACTIONS(3602), 1, + anon_sym_RBRACE, + ACTIONS(3590), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1664), 2, + sym_preproc_call, + sym_enumerator, + STATE(1906), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1284), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [54458] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62182] = 3, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1418), 1, + sym__declaration_declarator, + STATE(1422), 1, + sym__declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [54495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3927), 1, + ACTIONS(3604), 5, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(3925), 11, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3606), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [62202] = 11, + [54516] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3929), 1, + ACTIONS(3608), 1, anon_sym_COMMA, - ACTIONS(3933), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(3614), 1, anon_sym_COLON, - STATE(1577), 1, + STATE(1352), 1, sym_parameter_list, - STATE(1679), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1705), 1, + STATE(1463), 1, sym_bitfield_clause, - ACTIONS(3931), 2, + STATE(1467), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3610), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1543), 2, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [62238] = 3, + [54552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3618), 1, anon_sym_LBRACK, - ACTIONS(2857), 11, + STATE(1257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3616), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [62258] = 9, + [54576] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(1365), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54605] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3937), 1, + ACTIONS(3620), 1, aux_sym_preproc_if_token2, - ACTIONS(3939), 1, + ACTIONS(3622), 1, aux_sym_preproc_else_token1, - ACTIONS(3941), 1, + ACTIONS(3624), 1, aux_sym_preproc_elif_token1, - STATE(1534), 1, + STATE(1360), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, + STATE(1758), 1, sym_enumerator, - ACTIONS(3943), 2, + ACTIONS(3626), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2039), 3, + STATE(1901), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [62289] = 8, + [54636] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1592), 1, + STATE(1358), 1, sym__declarator, - STATE(2001), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62318] = 10, + [54665] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3869), 1, - aux_sym_preproc_else_token1, - ACTIONS(3945), 1, + ACTIONS(3628), 1, + sym_identifier, + ACTIONS(3631), 1, + aux_sym_preproc_if_token1, + ACTIONS(3637), 1, + sym_preproc_directive, + ACTIONS(3640), 1, + anon_sym_RBRACE, + ACTIONS(3634), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1911), 2, + sym_preproc_call, + sym_enumerator, + STATE(1284), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [54694] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3644), 1, + anon_sym___attribute__, + ACTIONS(3598), 2, + anon_sym_LBRACK, sym_identifier, - ACTIONS(3947), 1, + ACTIONS(3642), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3647), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3600), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [54719] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3553), 1, aux_sym_preproc_if_token2, - ACTIONS(3949), 1, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3622), 1, + aux_sym_preproc_else_token1, + ACTIONS(3624), 1, aux_sym_preproc_elif_token1, - STATE(1567), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1595), 1, + STATE(1296), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1663), 1, + STATE(1758), 1, sym_enumerator, - STATE(2154), 2, + ACTIONS(3626), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1895), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - STATE(2155), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [62351] = 8, + sym_preproc_elifdef_in_enumerator_list, + [54750] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3622), 1, + aux_sym_preproc_else_token1, + ACTIONS(3624), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3649), 1, + aux_sym_preproc_if_token2, + STATE(1301), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + ACTIONS(3626), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1931), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [54781] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1614), 1, + STATE(1381), 1, sym__declarator, - STATE(2001), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62380] = 10, + [54810] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3869), 1, - aux_sym_preproc_else_token1, - ACTIONS(3945), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(3949), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3951), 1, - aux_sym_preproc_if_token2, - STATE(1589), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1598), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1663), 1, - sym_enumerator, - STATE(2105), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(2108), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [62413] = 9, + ACTIONS(2953), 1, + anon_sym_LPAREN2, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(1297), 1, + sym__field_declarator, + STATE(1732), 1, + sym_ms_based_modifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [54839] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_COLON, - STATE(1577), 1, + STATE(1352), 1, sym_parameter_list, - STATE(1776), 1, - sym_bitfield_clause, - STATE(1543), 2, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3953), 3, + ACTIONS(3651), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [62444] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1591), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62473] = 7, + anon_sym_COLON, + [54866] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - STATE(1577), 1, + STATE(1352), 1, sym_parameter_list, - STATE(1543), 2, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3955), 5, + ACTIONS(3653), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62500] = 7, + [54893] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3655), 1, + aux_sym_preproc_if_token2, + ACTIONS(3657), 1, + aux_sym_preproc_else_token1, + ACTIONS(3659), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3661), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1294), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1896), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [54922] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, + anon_sym_LPAREN2, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(1393), 1, + sym__field_declarator, + STATE(1732), 1, + sym_ms_based_modifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [54951] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3657), 1, + aux_sym_preproc_else_token1, + ACTIONS(3659), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3663), 1, + aux_sym_preproc_if_token2, + ACTIONS(3661), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1354), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1924), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [54980] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - STATE(1577), 1, + STATE(1352), 1, sym_parameter_list, - STATE(1543), 2, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3957), 5, + ACTIONS(3665), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62527] = 10, + [55007] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3869), 1, - aux_sym_preproc_else_token1, - ACTIONS(3945), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3949), 1, + ACTIONS(3622), 1, + aux_sym_preproc_else_token1, + ACTIONS(3624), 1, aux_sym_preproc_elif_token1, - ACTIONS(3959), 1, + ACTIONS(3667), 1, aux_sym_preproc_if_token2, - STATE(1574), 1, + STATE(1360), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1576), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1663), 1, + STATE(1758), 1, sym_enumerator, - STATE(2176), 2, + ACTIONS(3626), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1921), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - STATE(2177), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [62560] = 7, + sym_preproc_elifdef_in_enumerator_list, + [55038] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - STATE(1577), 1, + ACTIONS(3614), 1, + anon_sym_COLON, + STATE(1352), 1, sym_parameter_list, - STATE(1543), 2, + STATE(1559), 1, + sym_bitfield_clause, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3961), 5, + ACTIONS(3669), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [62587] = 8, + [55069] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1579), 1, + STATE(1348), 1, sym__declarator, - STATE(2001), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62616] = 8, + [55098] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3963), 1, - aux_sym_preproc_if_token2, - ACTIONS(3965), 1, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(1351), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [55127] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3967), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, - ACTIONS(3969), 2, + ACTIONS(3671), 1, + aux_sym_preproc_if_token2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1575), 2, + STATE(1354), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2121), 3, + STATE(1776), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [62645] = 8, + [55156] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1605), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [62674] = 7, + ACTIONS(3622), 1, + aux_sym_preproc_else_token1, + ACTIONS(3624), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3673), 1, + aux_sym_preproc_if_token2, + STATE(1360), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + ACTIONS(3626), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1756), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [55187] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3657), 1, + aux_sym_preproc_else_token1, + ACTIONS(3659), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3675), 1, + aux_sym_preproc_if_token2, + ACTIONS(3661), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1354), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1903), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [55216] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - STATE(1577), 1, + STATE(1352), 1, sym_parameter_list, - STATE(1543), 2, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3971), 5, + ACTIONS(3677), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62701] = 8, + [55243] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3563), 1, + aux_sym_preproc_if_token2, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1521), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [62730] = 8, + ACTIONS(3622), 1, + aux_sym_preproc_else_token1, + ACTIONS(3624), 1, + aux_sym_preproc_elif_token1, + STATE(1282), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + ACTIONS(3626), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1859), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [55274] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3657), 1, + aux_sym_preproc_else_token1, + ACTIONS(3659), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3679), 1, + aux_sym_preproc_if_token2, + ACTIONS(3661), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1354), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1858), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [55303] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1571), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62759] = 8, + ACTIONS(3622), 1, + aux_sym_preproc_else_token1, + ACTIONS(3624), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3681), 1, + aux_sym_preproc_if_token2, + STATE(1360), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + ACTIONS(3626), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1854), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [55334] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1582), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62788] = 9, + ACTIONS(3657), 1, + aux_sym_preproc_else_token1, + ACTIONS(3659), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3683), 1, + aux_sym_preproc_if_token2, + ACTIONS(3661), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1302), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1861), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [55363] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3622), 1, aux_sym_preproc_else_token1, - ACTIONS(3941), 1, + ACTIONS(3624), 1, aux_sym_preproc_elif_token1, - ACTIONS(3973), 1, + ACTIONS(3685), 1, aux_sym_preproc_if_token2, - STATE(1587), 1, + STATE(1306), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, + STATE(1758), 1, sym_enumerator, - ACTIONS(3943), 2, + ACTIONS(3626), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2111), 3, + STATE(1742), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [62819] = 8, + [55394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3975), 1, + ACTIONS(3687), 1, sym_identifier, - ACTIONS(3978), 1, - aux_sym_preproc_if_token1, - ACTIONS(3984), 1, - sym_preproc_directive, - ACTIONS(3987), 1, - anon_sym_RBRACE, - ACTIONS(3981), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2044), 2, - sym_preproc_call, - sym_enumerator, - STATE(1535), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [62848] = 6, + STATE(659), 1, + sym_string_literal, + ACTIONS(3689), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1500), 2, + sym__string, + sym_concatenated_string, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55419] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(1667), 1, - sym_gnu_asm_input_operand, - STATE(2132), 1, + STATE(1391), 1, + sym_parameter_list, + STATE(1341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3691), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [55445] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3697), 1, + anon_sym_LBRACK, + STATE(1474), 1, + sym_gnu_asm_output_operand, + STATE(1830), 1, sym_string_literal, - ACTIONS(3989), 2, + ACTIONS(3695), 2, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62872] = 3, + [55469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3995), 1, + ACTIONS(3701), 1, anon_sym_LBRACK, - ACTIONS(3993), 9, + ACTIONS(3699), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124933,12 +104338,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62890] = 3, + [55487] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3705), 1, + anon_sym_LBRACK, + STATE(1257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3703), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [55509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, + ACTIONS(3709), 1, anon_sym_LBRACK, - ACTIONS(3997), 9, + ACTIONS(3707), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124948,12 +104370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62908] = 3, + [55527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4003), 1, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(4001), 9, + ACTIONS(3711), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124963,106 +104385,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62926] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4007), 1, - anon_sym_LBRACK, - STATE(1732), 1, - sym_gnu_asm_output_operand, - STATE(2066), 1, - sym_string_literal, - ACTIONS(4005), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [62950] = 7, + [55545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(3717), 1, anon_sym_LBRACK, - STATE(1613), 1, - sym_parameter_list, - STATE(1556), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4009), 4, + ACTIONS(3715), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [62976] = 7, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [55563] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(1613), 1, + STATE(1391), 1, sym_parameter_list, - STATE(1556), 2, + STATE(1341), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4013), 4, + ACTIONS(3719), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63002] = 5, + [55589] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4017), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1479), 2, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(378), 1, + sym_compound_statement, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4015), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [63024] = 9, + [55621] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(4019), 1, - anon_sym_COMMA, - STATE(1613), 1, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(260), 1, + sym_compound_statement, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1244), 1, sym_parameter_list, - STATE(1677), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4021), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1556), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63054] = 3, + [55653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(3727), 1, anon_sym_LBRACK, - ACTIONS(4023), 9, + ACTIONS(3725), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125072,31 +104478,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63072] = 7, + [55671] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(1613), 1, + STATE(1391), 1, sym_parameter_list, - STATE(1556), 2, + STATE(1341), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4027), 4, + ACTIONS(3729), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63098] = 3, + [55697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 1, + ACTIONS(3733), 1, anon_sym_LBRACK, - ACTIONS(4029), 9, + ACTIONS(3731), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125106,391 +104512,486 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63116] = 3, + [55715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3693), 1, anon_sym_LBRACK, - ACTIONS(4033), 9, + STATE(1391), 1, + sym_parameter_list, + STATE(1341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3735), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + [55741] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(376), 1, anon_sym_LBRACE, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63134] = 7, + STATE(265), 1, + sym_compound_statement, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55773] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(1613), 1, - sym_parameter_list, - STATE(1556), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4037), 4, + ACTIONS(3737), 1, anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1391), 1, + sym_parameter_list, + STATE(1478), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(3739), 2, anon_sym_SEMI, anon_sym___attribute__, - [63160] = 6, + STATE(1341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55803] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(130), 1, + sym_compound_statement, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4039), 1, + ACTIONS(3743), 1, + anon_sym_LBRACK, + STATE(1516), 1, + sym_gnu_asm_input_operand, + STATE(1824), 1, + sym_string_literal, + ACTIONS(3741), 2, anon_sym_RPAREN, - ACTIONS(4041), 1, anon_sym_COLON, - STATE(774), 1, - sym_string_literal, - STATE(1811), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63183] = 6, + [55859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4043), 1, + ACTIONS(3747), 1, + anon_sym_LBRACK, + ACTIONS(3745), 9, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(774), 1, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [55877] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + sym_identifier, + ACTIONS(3753), 1, + sym_system_lib_string, + STATE(1787), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1827), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(95), 5, + ACTIONS(3751), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63206] = 9, + [55898] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3845), 1, - anon_sym_LPAREN2, - ACTIONS(3849), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(475), 1, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + STATE(367), 1, sym_compound_statement, - STATE(1145), 1, + STATE(922), 1, sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63235] = 5, + [55927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(3755), 1, sym_identifier, - ACTIONS(4049), 1, + ACTIONS(3757), 1, sym_system_lib_string, - STATE(1968), 2, + STATE(1804), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4047), 5, + ACTIONS(3751), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63256] = 9, + [55948] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(645), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3845), 1, - anon_sym_LPAREN2, - ACTIONS(3849), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(373), 1, - sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [63285] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3721), 1, anon_sym_LPAREN2, - ACTIONS(3849), 1, - anon_sym_LBRACK, - STATE(148), 1, + STATE(307), 1, sym_compound_statement, - STATE(1145), 1, + STATE(922), 1, sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63314] = 5, + [55977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4053), 1, - anon_sym_LBRACK, - STATE(1479), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4051), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [63335] = 7, + ACTIONS(3759), 1, + sym_identifier, + ACTIONS(3761), 1, + sym_system_lib_string, + STATE(1935), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3751), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55998] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1613), 1, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(260), 1, + sym_compound_statement, + STATE(1244), 1, sym_parameter_list, - STATE(1556), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4055), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [63360] = 9, + [56027] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3849), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(227), 1, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(130), 1, sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63389] = 6, + [56056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4057), 1, - anon_sym_RPAREN, - STATE(774), 1, + ACTIONS(3763), 1, + sym_identifier, + ACTIONS(3765), 1, + sym_system_lib_string, + STATE(1771), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1781), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(95), 5, + ACTIONS(3751), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63412] = 5, + [56077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(3687), 1, sym_identifier, - ACTIONS(4061), 1, - sym_system_lib_string, - STATE(2161), 2, - sym_preproc_call_expression, + STATE(659), 1, + sym_string_literal, + STATE(1534), 2, + sym__string, + sym_concatenated_string, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56098] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3687), 1, + sym_identifier, + STATE(659), 1, sym_string_literal, - ACTIONS(4047), 5, + STATE(1631), 2, + sym__string, + sym_concatenated_string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63433] = 9, + [56119] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3849), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(382), 1, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(378), 1, sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63462] = 5, + [56148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - sym_identifier, - ACTIONS(4065), 1, - sym_system_lib_string, - STATE(2171), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4047), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63483] = 6, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(1443), 1, + sym_parameter_list, + STATE(1477), 1, + sym__abstract_declarator, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [56173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4067), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3769), 1, + anon_sym_LBRACK, + STATE(1257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3767), 5, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(774), 1, - sym_string_literal, - STATE(1782), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63506] = 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + [56194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(3687), 1, sym_identifier, - ACTIONS(4071), 1, - sym_system_lib_string, - STATE(2120), 2, - sym_preproc_call_expression, + STATE(659), 1, sym_string_literal, - ACTIONS(4047), 5, + STATE(1596), 2, + sym__string, + sym_concatenated_string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63527] = 5, + [56215] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, - sym_identifier, - ACTIONS(4075), 1, - sym_system_lib_string, - STATE(2031), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4047), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63548] = 3, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + STATE(134), 1, + sym_compound_statement, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(4077), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3721), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [63564] = 7, + STATE(279), 1, + sym_compound_statement, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56273] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3965), 1, - aux_sym_preproc_else_token1, - ACTIONS(4081), 1, - aux_sym_preproc_if_token2, - ACTIONS(4083), 1, - aux_sym_preproc_elif_token1, - STATE(1637), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2180), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [63588] = 5, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3693), 1, + anon_sym_LBRACK, + STATE(1391), 1, + sym_parameter_list, + STATE(1341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3771), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [56298] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1742), 1, - sym_gnu_asm_input_operand, - STATE(2132), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63608] = 8, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(265), 1, + sym_compound_statement, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3939), 1, - aux_sym_preproc_else_token1, - ACTIONS(3947), 1, - aux_sym_preproc_if_token2, - ACTIONS(4085), 1, - aux_sym_preproc_elif_token1, - STATE(1595), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, - sym_enumerator, - STATE(2154), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63634] = 3, + ACTIONS(3733), 1, + anon_sym_LBRACK, + ACTIONS(3731), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3773), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [56346] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4089), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(365), 1, + sym_compound_statement, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3777), 1, anon_sym_LBRACK, - ACTIONS(4087), 7, + ACTIONS(3775), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125498,45 +104999,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [63650] = 8, + [56388] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(148), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(134), 1, sym_compound_statement, - STATE(1480), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63676] = 5, + [56414] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4007), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1773), 1, - sym_gnu_asm_output_operand, - STATE(2066), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63696] = 3, + STATE(287), 1, + sym_compound_statement, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 1, + ACTIONS(3781), 1, anon_sym_LBRACK, - ACTIONS(4091), 7, + ACTIONS(3779), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125544,241 +105048,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [63712] = 8, + [56456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3939), 1, - aux_sym_preproc_else_token1, - ACTIONS(4085), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4095), 1, - aux_sym_preproc_if_token2, - STATE(1638), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, - sym_enumerator, - STATE(2217), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63738] = 5, + ACTIONS(3785), 1, + anon_sym_LBRACK, + ACTIONS(3783), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 1, + ACTIONS(3787), 1, sym_identifier, - ACTIONS(4102), 1, + ACTIONS(3792), 1, aux_sym_preproc_elif_token1, - STATE(1575), 2, + STATE(1354), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4100), 4, + ACTIONS(3790), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [63758] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3965), 1, - aux_sym_preproc_else_token1, - ACTIONS(4083), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4104), 1, - aux_sym_preproc_if_token2, - STATE(1637), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2216), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [63782] = 3, + [56492] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_LBRACK, - ACTIONS(4106), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [63798] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1718), 1, - sym_string_literal, - ACTIONS(4110), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63816] = 8, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(355), 1, + sym_compound_statement, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56518] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(645), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(373), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(304), 1, sym_compound_statement, - STATE(1480), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63842] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3939), 1, - aux_sym_preproc_else_token1, - ACTIONS(3959), 1, - aux_sym_preproc_if_token2, - ACTIONS(4085), 1, - aux_sym_preproc_elif_token1, - STATE(1574), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, - sym_enumerator, - STATE(2176), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63868] = 7, + [56544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3965), 1, - aux_sym_preproc_else_token1, - ACTIONS(4083), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4112), 1, - aux_sym_preproc_if_token2, - STATE(1567), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2155), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [63892] = 8, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3794), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56560] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(227), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(127), 1, sym_compound_statement, - STATE(1480), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63918] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3939), 1, - aux_sym_preproc_else_token1, - ACTIONS(4085), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4114), 1, - aux_sym_preproc_if_token2, - STATE(1589), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, - sym_enumerator, - STATE(2105), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63944] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3965), 1, - aux_sym_preproc_else_token1, - ACTIONS(4083), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4116), 1, - aux_sym_preproc_if_token2, - STATE(1576), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2177), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [63968] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 1, - sym_identifier, - STATE(1550), 1, - sym_string_literal, - STATE(1787), 1, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63988] = 5, + [56586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 1, - sym_identifier, - STATE(1559), 1, + ACTIONS(3743), 1, + anon_sym_LBRACK, + STATE(1583), 1, + sym_gnu_asm_input_operand, + STATE(1824), 1, sym_string_literal, - STATE(1769), 1, - sym_concatenated_string, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64008] = 6, + [56606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, + ACTIONS(3798), 1, sym_identifier, - ACTIONS(4125), 1, + ACTIONS(3803), 1, aux_sym_preproc_elif_token1, - STATE(1587), 1, + STATE(1360), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, + STATE(1758), 1, sym_enumerator, - ACTIONS(4123), 4, + ACTIONS(3801), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [64030] = 3, + [56628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 1, + ACTIONS(3807), 1, anon_sym_LBRACK, - ACTIONS(4127), 7, + ACTIONS(3805), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125786,30 +105187,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64046] = 8, + [56644] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3939), 1, - aux_sym_preproc_else_token1, - ACTIONS(4085), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4131), 1, - aux_sym_preproc_if_token2, - STATE(1638), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, - sym_enumerator, - STATE(2122), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64072] = 3, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(279), 1, + sym_compound_statement, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56670] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(1242), 1, + sym_parameter_list, + ACTIONS(3809), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 1, + ACTIONS(3813), 1, anon_sym_LBRACK, - ACTIONS(4133), 7, + ACTIONS(3811), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125817,62 +105235,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64088] = 8, + [56710] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(382), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(298), 1, sym_compound_statement, - STATE(1480), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64114] = 8, + [56736] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(475), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(307), 1, sym_compound_statement, - STATE(1480), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64140] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4141), 1, - anon_sym_EQ, - ACTIONS(4137), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [64158] = 3, + [56762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4145), 1, + ACTIONS(3817), 1, anon_sym_LBRACK, - ACTIONS(4143), 7, + ACTIONS(3815), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125880,8704 +105284,8538 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64174] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3939), 1, - aux_sym_preproc_else_token1, - ACTIONS(4085), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4147), 1, - aux_sym_preproc_if_token2, - STATE(1638), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, - sym_enumerator, - STATE(2179), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64200] = 5, + [56778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 1, - sym_identifier, - STATE(1551), 1, + ACTIONS(3697), 1, + anon_sym_LBRACK, + STATE(1576), 1, + sym_gnu_asm_output_operand, + STATE(1830), 1, sym_string_literal, - STATE(1757), 1, - sym_concatenated_string, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64220] = 7, + [56798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, + ACTIONS(3821), 1, anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3819), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - ACTIONS(4149), 2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3825), 1, + anon_sym_LBRACK, + ACTIONS(3823), 7, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1512), 2, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56830] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(128), 1, + sym_compound_statement, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64244] = 7, + [56856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3965), 1, - aux_sym_preproc_else_token1, - ACTIONS(4083), 1, + ACTIONS(3829), 1, aux_sym_preproc_elif_token1, - ACTIONS(4151), 1, + ACTIONS(3831), 1, + anon_sym_EQ, + ACTIONS(3827), 6, + anon_sym_COMMA, aux_sym_preproc_if_token2, - STATE(1637), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2151), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [64268] = 3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [56874] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(277), 1, + sym_compound_statement, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56900] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(367), 1, + sym_compound_statement, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3835), 1, anon_sym_LBRACK, - ACTIONS(4153), 7, + ACTIONS(3833), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64284] = 5, + [56941] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 1, - sym_identifier, - STATE(1563), 1, - sym_string_literal, - STATE(1755), 1, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64304] = 3, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3693), 1, + anon_sym_LBRACK, + ACTIONS(3837), 1, + anon_sym_RPAREN, + STATE(1391), 1, + sym_parameter_list, + STATE(1341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - ACTIONS(4157), 6, + ACTIONS(3839), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64319] = 8, + [56979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(3845), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(4161), 1, - sym_identifier, - STATE(1056), 1, - sym_field_declaration_list, - STATE(1661), 1, + STATE(1378), 2, sym_attribute_specifier, - STATE(1800), 1, - sym_ms_declspec_modifier, - [64344] = 5, + aux_sym_type_definition_repeat1, + ACTIONS(3843), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [56996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4166), 1, - anon_sym_EQ, - ACTIONS(4168), 1, - anon_sym_DOT, - STATE(1603), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [64363] = 3, + ACTIONS(3848), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4173), 1, + ACTIONS(3854), 1, anon_sym_LBRACK, - ACTIONS(4171), 6, + ACTIONS(3852), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64378] = 7, + [57026] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(4175), 1, + ACTIONS(3856), 1, anon_sym_RPAREN, - STATE(1577), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1543), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64401] = 3, + [57049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(4177), 6, + ACTIONS(3858), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64416] = 3, + [57064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4183), 1, + ACTIONS(3864), 1, anon_sym_LBRACK, - ACTIONS(4181), 6, + ACTIONS(3862), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64431] = 5, + [57079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2041), 1, + ACTIONS(3866), 1, anon_sym_LBRACK, - ACTIONS(4185), 1, + ACTIONS(3869), 1, anon_sym_EQ, - ACTIONS(4187), 1, + ACTIONS(3871), 1, anon_sym_DOT, - STATE(1603), 4, + STATE(1384), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [64450] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4191), 1, - anon_sym_COMMA, - ACTIONS(4193), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4189), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [64467] = 3, + [57098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(4195), 6, + ACTIONS(3874), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64482] = 7, + [57113] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(4199), 1, + ACTIONS(3878), 1, anon_sym_RPAREN, - STATE(1613), 1, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1903), 1, + anon_sym_LBRACK, + ACTIONS(3880), 1, + anon_sym_EQ, + ACTIONS(3882), 1, + anon_sym_DOT, + STATE(1384), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [57155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3886), 1, + anon_sym_COMMA, + ACTIONS(3888), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3884), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [57172] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3693), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_RPAREN, + STATE(1391), 1, sym_parameter_list, - STATE(1556), 2, + STATE(1341), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64505] = 3, + [57195] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3892), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [57212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, + ACTIONS(3896), 1, anon_sym_LBRACK, - ACTIONS(4201), 6, + ACTIONS(3894), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64520] = 3, + [57227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 1, + ACTIONS(3900), 1, anon_sym_LBRACK, - ACTIONS(4205), 6, + ACTIONS(3898), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64535] = 7, + [57242] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3612), 1, anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3902), 1, + anon_sym_RPAREN, + STATE(1352), 1, + sym_parameter_list, + STATE(1313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57265] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(4209), 1, + ACTIONS(3612), 1, + anon_sym_LBRACK, + ACTIONS(3904), 1, anon_sym_RPAREN, - STATE(1480), 1, + STATE(1352), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64558] = 3, + [57288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4213), 1, + ACTIONS(3908), 1, anon_sym_LBRACK, - ACTIONS(4211), 6, + ACTIONS(3906), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64573] = 3, + [57303] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(3910), 1, + sym_identifier, + STATE(728), 1, + sym_field_declaration_list, + STATE(1449), 1, + sym_attribute_specifier, + STATE(1582), 1, + sym_ms_declspec_modifier, + [57328] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57351] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3527), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [57368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3912), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3914), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57382] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_SEMI, + STATE(1554), 1, + aux_sym_declaration_repeat1, + STATE(1555), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57402] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, + anon_sym_SEMI, + STATE(1617), 1, + sym_gnu_asm_expression, + STATE(1619), 1, + aux_sym_declaration_repeat1, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, anon_sym_LBRACK, - ACTIONS(4215), 6, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3924), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [64588] = 4, + anon_sym_COLON, + [57440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 1, + ACTIONS(3928), 1, anon_sym_LPAREN2, - STATE(1624), 2, + STATE(1417), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4221), 3, + ACTIONS(3930), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3987), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4223), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [64618] = 5, + [57456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4227), 1, - anon_sym_LBRACK, - STATE(1660), 1, - sym_parameter_list, - ACTIONS(4225), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64636] = 3, + STATE(1937), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [57470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 2, + ACTIONS(3932), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4231), 4, + ACTIONS(3934), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64650] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4227), 1, - anon_sym_LBRACK, - STATE(1660), 1, - sym_parameter_list, - ACTIONS(4233), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64668] = 3, + [57484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4123), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [64682] = 3, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [57498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 2, + ACTIONS(3936), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4237), 4, + ACTIONS(3938), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64696] = 4, + [57512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, + ACTIONS(3940), 1, anon_sym_LPAREN2, - STATE(1624), 2, + STATE(1408), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4241), 3, + ACTIONS(3942), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64712] = 3, + [57528] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1909), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [57542] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3945), 1, + anon_sym_SEMI, + STATE(1611), 1, + sym_gnu_asm_expression, + STATE(1612), 1, + aux_sym_declaration_repeat1, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 2, + ACTIONS(3947), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4246), 4, + ACTIONS(3949), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64726] = 3, + [57576] = 5, ACTIONS(3), 1, sym_comment, - STATE(774), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64740] = 5, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3951), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(4227), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(1660), 1, + STATE(1452), 1, sym_parameter_list, - ACTIONS(4248), 3, + ACTIONS(3953), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64758] = 3, + [57612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4246), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [64772] = 3, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3955), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 2, + ACTIONS(3957), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4252), 4, + ACTIONS(3959), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64786] = 3, + [57644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 2, + ACTIONS(3961), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4252), 4, + ACTIONS(3963), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_EQ, - ACTIONS(4137), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [64814] = 4, + [57658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 1, + ACTIONS(3965), 1, anon_sym_LPAREN2, - STATE(1624), 2, + STATE(1408), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4221), 3, + ACTIONS(3930), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64830] = 5, + [57674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4227), 1, - anon_sym_LBRACK, - STATE(1660), 1, - sym_parameter_list, - ACTIONS(4258), 3, + ACTIONS(3916), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64848] = 5, + ACTIONS(3967), 1, + anon_sym_SEMI, + STATE(1613), 1, + sym_gnu_asm_expression, + STATE(1615), 1, + aux_sym_declaration_repeat1, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(4227), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(1660), 1, + STATE(1452), 1, sym_parameter_list, - ACTIONS(4260), 3, + ACTIONS(3969), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64866] = 3, + [57712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 2, + ACTIONS(3912), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4264), 4, + ACTIONS(3914), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64880] = 4, + [57726] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3971), 1, + anon_sym_SEMI, + STATE(1521), 1, + aux_sym_declaration_repeat1, + STATE(1551), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(1632), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4221), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [64896] = 4, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4268), 1, - sym_identifier, - STATE(1637), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4100), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [64912] = 5, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3973), 1, + anon_sym_SEMI, + STATE(1546), 1, + aux_sym_declaration_repeat1, + STATE(1549), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - sym_identifier, - STATE(1638), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, - sym_enumerator, - ACTIONS(4123), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [64930] = 3, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3975), 1, + anon_sym_SEMI, + STATE(1547), 1, + aux_sym_declaration_repeat1, + STATE(1591), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57806] = 5, ACTIONS(3), 1, sym_comment, - STATE(2206), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64944] = 3, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3977), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 2, + ACTIONS(3640), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4273), 4, + ACTIONS(3979), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64958] = 3, + [57838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3981), 1, + anon_sym_SEMI, + STATE(1563), 1, + aux_sym_declaration_repeat1, + STATE(1564), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, + anon_sym_SEMI, + STATE(1597), 1, + aux_sym_declaration_repeat1, + STATE(1601), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57878] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3985), 1, + anon_sym_SEMI, + STATE(1593), 1, + aux_sym_declaration_repeat1, + STATE(1599), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57898] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3987), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57916] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3989), 1, + anon_sym_SEMI, + STATE(1568), 1, + aux_sym_declaration_repeat1, + STATE(1569), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 2, + ACTIONS(3991), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4277), 4, + ACTIONS(3993), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64972] = 3, + [57950] = 3, ACTIONS(3), 1, sym_comment, - STATE(2085), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64986] = 3, + ACTIONS(3803), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3801), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [57964] = 6, ACTIONS(3), 1, sym_comment, - STATE(1756), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [65000] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3995), 1, + anon_sym_SEMI, + STATE(1579), 1, + aux_sym_declaration_repeat1, + STATE(1580), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 1, - anon_sym_LPAREN2, - STATE(1617), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4221), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65016] = 3, + ACTIONS(3932), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3934), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 2, + ACTIONS(3997), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4283), 4, + ACTIONS(3999), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65030] = 5, + [58012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(4001), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4227), 1, anon_sym_LBRACK, - STATE(1660), 1, - sym_parameter_list, - ACTIONS(4285), 3, + anon_sym_COLON, + [58023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [65048] = 5, + [58034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(4005), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4227), 1, anon_sym_LBRACK, - STATE(1660), 1, - sym_parameter_list, - ACTIONS(4149), 2, + anon_sym_COLON, + [58045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4007), 5, anon_sym_COMMA, anon_sym_RPAREN, - [65065] = 5, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [58056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(4289), 1, - anon_sym_COLON_COLON, - STATE(1831), 1, - sym_argument_list, - ACTIONS(4287), 2, + STATE(1690), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4009), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [65082] = 2, + anon_sym_SEMI, + [58071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 5, + ACTIONS(4011), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65093] = 2, + [58082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 5, + ACTIONS(4013), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65104] = 2, + [58093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4015), 1, + sym_identifier, + STATE(722), 1, + sym_field_declaration_list, + STATE(1524), 1, + sym_ms_declspec_modifier, + [58112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 5, + ACTIONS(4017), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65115] = 2, + [58123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 5, + ACTIONS(4019), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65126] = 2, + [58134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 5, + ACTIONS(4021), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65137] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 1, - sym_identifier, - ACTIONS(4301), 1, - aux_sym_preproc_if_token2, - STATE(1609), 1, - sym_enumerator, - STATE(1695), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1701), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - [65156] = 2, + [58145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4303), 5, + ACTIONS(4023), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65167] = 6, + [58156] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2813), 1, + ACTIONS(2412), 1, anon_sym_LBRACE, - ACTIONS(4305), 1, + ACTIONS(4025), 1, sym_identifier, - STATE(1057), 1, + STATE(718), 1, sym_field_declaration_list, - STATE(1804), 1, + STATE(1622), 1, sym_ms_declspec_modifier, - [65186] = 2, + [58175] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(4027), 1, + aux_sym_preproc_if_token2, + STATE(1388), 1, + sym_enumerator, + STATE(1492), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1493), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(4031), 1, + anon_sym_COLON_COLON, + STATE(1682), 1, + sym_argument_list, + ACTIONS(4029), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [58211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 5, + ACTIONS(4033), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65197] = 2, + [58222] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1704), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [58237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 5, + ACTIONS(4037), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65208] = 2, + [58248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4311), 5, + ACTIONS(4039), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65219] = 2, + [58259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3809), 2, anon_sym_COMMA, anon_sym_RPAREN, + [58276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4041), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4043), 4, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [65230] = 6, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [58300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(4315), 1, - sym_identifier, - STATE(1026), 1, - sym_field_declaration_list, - STATE(1766), 1, - sym_ms_declspec_modifier, - [65249] = 2, + ACTIONS(4045), 1, + anon_sym___except, + ACTIONS(4047), 1, + anon_sym___finally, + STATE(150), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [58314] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4049), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58328] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4051), 1, + anon_sym_SEMI, + STATE(1465), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58342] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4053), 1, + anon_sym_SEMI, + STATE(1487), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3608), 1, + anon_sym_COMMA, + STATE(1512), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4055), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 5, + ACTIONS(4057), 1, anon_sym_COMMA, + STATE(1464), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4060), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_COLON, - [65260] = 3, + [58384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4062), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + STATE(1652), 1, + sym_argument_list, + ACTIONS(4064), 2, anon_sym_COMMA, - ACTIONS(4189), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [65273] = 2, + anon_sym_RBRACK_RBRACK, + [58412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3608), 1, + anon_sym_COMMA, + STATE(1515), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4066), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58426] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4068), 1, + anon_sym_COMMA, + STATE(1468), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4071), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58440] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4073), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58454] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4075), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58468] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4077), 1, + anon_sym_DQUOTE, + ACTIONS(4079), 1, + aux_sym_string_literal_token1, + ACTIONS(4081), 1, + sym_escape_sequence, + STATE(1510), 1, + aux_sym_string_literal_repeat1, + [58484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4083), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58498] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4085), 1, + aux_sym_preproc_include_token2, + ACTIONS(4087), 1, + anon_sym_LPAREN, + ACTIONS(4089), 1, + sym_preproc_arg, + STATE(1714), 1, + sym_preproc_params, + [58514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 5, + ACTIONS(4091), 1, anon_sym_COMMA, + STATE(1513), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4093), 2, anon_sym_RPAREN, + anon_sym_COLON, + [58528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4095), 1, + anon_sym_SEMI, + STATE(1457), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58542] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + anon_sym___except, + ACTIONS(4099), 1, + anon_sym___finally, + STATE(226), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [58556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, anon_sym_LPAREN2, + ACTIONS(3926), 1, anon_sym_LBRACK, - anon_sym_COLON, - [65284] = 4, + ACTIONS(4101), 1, + anon_sym_RPAREN, + STATE(1452), 1, + sym_parameter_list, + [58572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3737), 1, + anon_sym_COMMA, + STATE(1468), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4103), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58586] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4087), 1, + anon_sym_LPAREN, + ACTIONS(4105), 1, + aux_sym_preproc_include_token2, + ACTIONS(4107), 1, + sym_preproc_arg, + STATE(1699), 1, + sym_preproc_params, + [58602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, + anon_sym___except, + ACTIONS(4111), 1, + anon_sym___finally, + STATE(105), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [58616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4323), 1, + ACTIONS(4113), 1, anon_sym_SEMI, - STATE(1668), 2, + STATE(1460), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65298] = 5, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4325), 1, - aux_sym_preproc_include_token2, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4329), 1, - sym_preproc_arg, - STATE(1925), 1, - sym_preproc_params, - [65314] = 4, + [58630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4331), 1, + ACTIONS(4115), 1, anon_sym_COMMA, - STATE(1670), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4333), 2, + STATE(1464), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4117), 2, anon_sym_RPAREN, anon_sym_COLON, - [65328] = 4, + [58644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4335), 1, + ACTIONS(4119), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1496), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65342] = 4, - ACTIONS(3), 1, + [58658] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3865), 1, - sym_identifier, - ACTIONS(4337), 1, - aux_sym_preproc_if_token2, - STATE(1695), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [65356] = 4, + ACTIONS(4121), 1, + anon_sym_SQUOTE, + STATE(1484), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4123), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58672] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4126), 1, + anon_sym_DQUOTE, + ACTIONS(4128), 1, + aux_sym_string_literal_token1, + ACTIONS(4131), 1, + sym_escape_sequence, + STATE(1485), 1, + aux_sym_string_literal_repeat1, + [58688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4331), 1, + ACTIONS(4134), 1, anon_sym_COMMA, - STATE(1735), 1, + STATE(1486), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4339), 2, + ACTIONS(4137), 2, anon_sym_RPAREN, anon_sym_COLON, - [65370] = 4, + [58702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4341), 1, + ACTIONS(4139), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1378), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65384] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4343), 1, - anon_sym_COMMA, - STATE(1672), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4346), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [65398] = 4, + [58716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 1, + ACTIONS(4141), 1, anon_sym___except, - ACTIONS(4350), 1, + ACTIONS(4143), 1, anon_sym___finally, - STATE(319), 2, + STATE(218), 2, sym_seh_except_clause, sym_seh_finally_clause, - [65412] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - STATE(1852), 1, - sym_argument_list, - ACTIONS(4352), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [65426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(4301), 1, - aux_sym_preproc_if_token2, - STATE(1701), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, - sym_enumerator, - [65442] = 5, - ACTIONS(3589), 1, + [58730] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4145), 1, anon_sym_DQUOTE, - ACTIONS(4356), 1, + ACTIONS(4147), 1, aux_sym_string_literal_token1, - ACTIONS(4358), 1, + ACTIONS(4149), 1, sym_escape_sequence, - STATE(1698), 1, + STATE(1485), 1, aux_sym_string_literal_repeat1, - [65458] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4019), 1, - anon_sym_COMMA, - STATE(1672), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4360), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [65472] = 4, - ACTIONS(3589), 1, + [58746] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4362), 1, + ACTIONS(4151), 1, anon_sym_SQUOTE, - STATE(1699), 1, + STATE(1484), 1, aux_sym_char_literal_repeat1, - ACTIONS(4364), 2, + ACTIONS(4153), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [65486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3929), 1, - anon_sym_COMMA, - STATE(1684), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4366), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [65500] = 4, + [58760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4368), 1, + ACTIONS(4155), 1, anon_sym_SEMI, - STATE(1688), 2, + STATE(1470), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65514] = 5, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4370), 1, - aux_sym_preproc_include_token2, - ACTIONS(4372), 1, - sym_preproc_arg, - STATE(1877), 1, - sym_preproc_params, - [65530] = 5, - ACTIONS(3589), 1, + [58774] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_DQUOTE, - ACTIONS(4376), 1, - aux_sym_string_literal_token1, - ACTIONS(4378), 1, - sym_escape_sequence, - STATE(1708), 1, - aux_sym_string_literal_repeat1, - [65546] = 5, - ACTIONS(3589), 1, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(4157), 1, + aux_sym_preproc_if_token2, + STATE(1360), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + [58790] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, - aux_sym_string_literal_token1, - ACTIONS(4358), 1, - sym_escape_sequence, - ACTIONS(4380), 1, - anon_sym_DQUOTE, - STATE(1698), 1, - aux_sym_string_literal_repeat1, - [65562] = 4, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(4159), 1, + aux_sym_preproc_if_token2, + STATE(1354), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 1, - anon_sym_COMMA, - STATE(1684), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4385), 2, - anon_sym_SEMI, + ACTIONS(3504), 1, anon_sym___attribute__, - [65576] = 4, + ACTIONS(4161), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58818] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(4027), 1, + aux_sym_preproc_if_token2, + STATE(1492), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + [58834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4387), 1, + ACTIONS(4163), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1378), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65590] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4389), 1, - anon_sym_SQUOTE, - STATE(1699), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4364), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [65604] = 5, - ACTIONS(3589), 1, + [58848] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4327), 1, + ACTIONS(4087), 1, anon_sym_LPAREN, - ACTIONS(4391), 1, + ACTIONS(4165), 1, aux_sym_preproc_include_token2, - ACTIONS(4393), 1, + ACTIONS(4167), 1, sym_preproc_arg, - STATE(1929), 1, + STATE(1721), 1, sym_preproc_params, - [65620] = 4, + [58864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4395), 1, + ACTIONS(4169), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65634] = 4, + [58878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4397), 1, - anon_sym_SEMI, - STATE(1724), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65648] = 5, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(4171), 1, + aux_sym_preproc_if_token2, + STATE(1493), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4115), 1, anon_sym_COMMA, - ACTIONS(4401), 1, + STATE(1482), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4173), 2, anon_sym_RPAREN, - STATE(1807), 1, - aux_sym_parameter_list_repeat1, - STATE(1826), 1, - aux_sym__old_style_parameter_list_repeat1, - [65664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4403), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4405), 1, - anon_sym___except, - ACTIONS(4407), 1, - anon_sym___finally, - STATE(199), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [65688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 1, - anon_sym___except, - ACTIONS(4411), 1, - anon_sym___finally, - STATE(319), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [65702] = 5, - ACTIONS(3589), 1, + anon_sym_COLON, + [58906] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4327), 1, + ACTIONS(4087), 1, anon_sym_LPAREN, - ACTIONS(4413), 1, + ACTIONS(4175), 1, aux_sym_preproc_include_token2, - ACTIONS(4415), 1, + ACTIONS(4177), 1, sym_preproc_arg, - STATE(1861), 1, + STATE(1729), 1, sym_preproc_params, - [65718] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 1, - sym_identifier, - ACTIONS(4417), 1, - aux_sym_preproc_if_token2, - STATE(1575), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [65732] = 5, - ACTIONS(3589), 1, + [58922] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4419), 1, + ACTIONS(4179), 1, anon_sym_DQUOTE, - ACTIONS(4421), 1, + ACTIONS(4181), 1, aux_sym_string_literal_token1, - ACTIONS(4423), 1, + ACTIONS(4183), 1, sym_escape_sequence, - STATE(1736), 1, + STATE(1489), 1, aux_sym_string_literal_repeat1, - [65748] = 5, - ACTIONS(3589), 1, + [58938] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4185), 1, anon_sym_DQUOTE, - ACTIONS(4427), 1, + ACTIONS(4187), 1, aux_sym_string_literal_token1, - ACTIONS(4429), 1, + ACTIONS(4189), 1, sym_escape_sequence, - STATE(1683), 1, + STATE(1520), 1, aux_sym_string_literal_repeat1, - [65764] = 5, - ACTIONS(3589), 1, + [58954] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_DQUOTE, - ACTIONS(4433), 1, - aux_sym_string_literal_token1, - ACTIONS(4436), 1, + ACTIONS(4191), 1, + anon_sym_COMMA, + STATE(1486), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4193), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58968] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4195), 1, + anon_sym_COMMA, + STATE(1505), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4198), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58982] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4087), 1, + anon_sym_LPAREN, + ACTIONS(4200), 1, + aux_sym_preproc_include_token2, + ACTIONS(4202), 1, + sym_preproc_arg, + STATE(1716), 1, + sym_preproc_params, + [58998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4204), 1, + anon_sym_COMMA, + ACTIONS(4206), 1, + anon_sym_RPAREN, + STATE(1609), 1, + aux_sym_parameter_list_repeat1, + STATE(1639), 1, + aux_sym__old_style_parameter_list_repeat1, + [59014] = 4, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4208), 1, + anon_sym_SQUOTE, + STATE(1484), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4153), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - STATE(1698), 1, - aux_sym_string_literal_repeat1, - [65780] = 4, - ACTIONS(3589), 1, + [59028] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4439), 1, + ACTIONS(4210), 1, anon_sym_SQUOTE, - STATE(1699), 1, + STATE(1484), 1, aux_sym_char_literal_repeat1, - ACTIONS(4441), 2, + ACTIONS(4153), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [65794] = 5, - ACTIONS(3589), 1, + [59042] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4444), 1, - anon_sym_DQUOTE, - ACTIONS(4446), 1, + ACTIONS(4147), 1, aux_sym_string_literal_token1, - ACTIONS(4448), 1, + ACTIONS(4149), 1, sym_escape_sequence, - STATE(1676), 1, + ACTIONS(4212), 1, + anon_sym_DQUOTE, + STATE(1485), 1, aux_sym_string_literal_repeat1, - [65810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(4450), 1, - aux_sym_preproc_if_token2, - STATE(1587), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, - sym_enumerator, - [65826] = 4, + [59058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4452), 1, + ACTIONS(4214), 4, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1671), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65840] = 4, + anon_sym_asm, + anon_sym___asm__, + [59068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4454), 1, + ACTIONS(3608), 1, + anon_sym_COMMA, + STATE(1515), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4216), 2, anon_sym_SEMI, - STATE(1721), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65854] = 5, + anon_sym___attribute__, + [59082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4227), 1, - anon_sym_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4091), 1, + anon_sym_COMMA, + STATE(1505), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4218), 2, anon_sym_RPAREN, - STATE(1660), 1, - sym_parameter_list, - [65870] = 4, + anon_sym_COLON, + [59096] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4087), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, + aux_sym_preproc_include_token2, + ACTIONS(4222), 1, + sym_preproc_arg, + STATE(1674), 1, + sym_preproc_params, + [59112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(4224), 1, anon_sym_COMMA, - STATE(1716), 1, + STATE(1515), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4458), 2, + ACTIONS(4227), 2, anon_sym_SEMI, anon_sym___attribute__, - [65884] = 4, + [59126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(4191), 1, anon_sym_COMMA, - STATE(1706), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4463), 2, + STATE(1504), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4229), 2, anon_sym_RPAREN, anon_sym_COLON, - [65898] = 4, - ACTIONS(3589), 1, + [59140] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 1, - anon_sym_SQUOTE, - STATE(1699), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4364), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [65912] = 5, - ACTIONS(3589), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_RPAREN, + STATE(1452), 1, + sym_parameter_list, + [59156] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 1, + anon_sym___except, + ACTIONS(4235), 1, + anon_sym___finally, + STATE(150), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [59170] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4087), 1, + anon_sym_LPAREN, + ACTIONS(4237), 1, + aux_sym_preproc_include_token2, + ACTIONS(4239), 1, + sym_preproc_arg, + STATE(1705), 1, + sym_preproc_params, + [59186] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4147), 1, aux_sym_string_literal_token1, - ACTIONS(4358), 1, + ACTIONS(4149), 1, sym_escape_sequence, - ACTIONS(4467), 1, + ACTIONS(4241), 1, anon_sym_DQUOTE, - STATE(1698), 1, + STATE(1485), 1, aux_sym_string_literal_repeat1, - [65928] = 4, + [59202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4469), 1, - anon_sym___except, - ACTIONS(4471), 1, - anon_sym___finally, - STATE(300), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [65942] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4473), 1, + ACTIONS(4245), 3, anon_sym_COMMA, - STATE(1712), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4475), 2, anon_sym_RPAREN, anon_sym_COLON, - [65956] = 2, + [59224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(3063), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [59233] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4247), 1, sym_identifier, - [65966] = 4, + STATE(719), 1, + sym_field_declaration_list, + [59246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4477), 1, + ACTIONS(4249), 3, anon_sym_COMMA, - STATE(1712), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4480), 2, anon_sym_RPAREN, anon_sym_COLON, - [65980] = 4, + [59255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4482), 1, + ACTIONS(4251), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1773), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65994] = 5, - ACTIONS(3589), 1, + [59268] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4484), 1, - aux_sym_preproc_include_token2, - ACTIONS(4486), 1, - sym_preproc_arg, - STATE(1899), 1, - sym_preproc_params, - [66010] = 4, + ACTIONS(3127), 1, + anon_sym_RBRACE, + ACTIONS(4253), 1, + anon_sym_COMMA, + STATE(1527), 1, + aux_sym_initializer_list_repeat1, + [59281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4488), 1, - anon_sym_SEMI, - STATE(1685), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66024] = 4, + ACTIONS(3073), 1, + anon_sym_COMMA, + ACTIONS(3081), 1, + anon_sym_RPAREN, + STATE(1586), 1, + aux_sym_argument_list_repeat1, + [59294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - STATE(1684), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4490), 2, + ACTIONS(4256), 1, anon_sym_SEMI, - anon_sym___attribute__, - [66038] = 4, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [59307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4492), 1, - anon_sym_SEMI, - STATE(1727), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66052] = 4, + ACTIONS(4258), 1, + anon_sym_COMMA, + ACTIONS(4260), 1, + anon_sym_RPAREN, + STATE(1609), 1, + aux_sym_parameter_list_repeat1, + [59320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4262), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [59329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, + ACTIONS(4264), 1, anon_sym_COMMA, - STATE(1730), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4496), 2, + ACTIONS(4267), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66066] = 4, + STATE(1532), 1, + aux_sym__old_style_parameter_list_repeat1, + [59342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - anon_sym___except, - ACTIONS(4500), 1, - anon_sym___finally, - STATE(103), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66080] = 4, + ACTIONS(4269), 1, + anon_sym_RPAREN, + ACTIONS(4271), 1, + anon_sym_COLON, + STATE(1627), 1, + sym_gnu_asm_input_operand_list, + [59355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4502), 1, - anon_sym_SEMI, - STATE(1722), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66094] = 4, + ACTIONS(4273), 1, + anon_sym_RPAREN, + ACTIONS(4275), 1, + anon_sym_COLON, + STATE(1598), 1, + sym_gnu_asm_output_operand_list, + [59368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4504), 1, - anon_sym_SEMI, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66108] = 4, + ACTIONS(4277), 1, + anon_sym_RPAREN, + ACTIONS(4279), 1, + anon_sym_COLON, + STATE(1573), 1, + sym_gnu_asm_clobber_list, + [59381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4506), 1, - anon_sym_SEMI, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66122] = 5, - ACTIONS(3589), 1, + ACTIONS(4281), 1, + anon_sym_RPAREN, + ACTIONS(4283), 1, + anon_sym_COLON, + STATE(1890), 1, + sym_gnu_asm_goto_list, + [59394] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4508), 1, - aux_sym_preproc_include_token2, - ACTIONS(4510), 1, - sym_preproc_arg, - STATE(1911), 1, - sym_preproc_params, - [66138] = 4, + ACTIONS(4285), 1, + anon_sym_COMMA, + ACTIONS(4287), 1, + anon_sym_RBRACK_RBRACK, + STATE(1585), 1, + aux_sym_attribute_declaration_repeat1, + [59407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4512), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4289), 1, anon_sym_SEMI, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66152] = 5, - ACTIONS(3589), 1, + STATE(1548), 1, + aux_sym_declaration_repeat1, + [59420] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4514), 1, - aux_sym_preproc_include_token2, - ACTIONS(4516), 1, - sym_preproc_arg, - STATE(1921), 1, - sym_preproc_params, - [66168] = 4, + ACTIONS(4293), 1, + anon_sym_RPAREN, + ACTIONS(4291), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [59431] = 3, + ACTIONS(3317), 1, + sym_comment, + STATE(1509), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4295), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4518), 1, - anon_sym_SEMI, - STATE(1733), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66182] = 4, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_RPAREN, + STATE(1600), 1, + aux_sym_preproc_params_repeat1, + [59455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4520), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4301), 1, anon_sym_SEMI, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66196] = 5, - ACTIONS(3589), 1, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59468] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - aux_sym_preproc_include_token2, - ACTIONS(4524), 1, - sym_preproc_arg, - STATE(1928), 1, - sym_preproc_params, - [66212] = 5, - ACTIONS(3589), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4303), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59481] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4526), 1, + ACTIONS(4305), 1, aux_sym_preproc_include_token2, - ACTIONS(4528), 1, - sym_preproc_arg, - STATE(1909), 1, - sym_preproc_params, - [66228] = 4, + ACTIONS(4307), 1, + anon_sym_LPAREN2, + STATE(1813), 1, + sym_preproc_argument_list, + [59494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - STATE(1706), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4530), 2, + ACTIONS(3075), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66242] = 4, + STATE(1588), 1, + aux_sym_argument_list_repeat1, + [59507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, - anon_sym___except, - ACTIONS(4534), 1, - anon_sym___finally, - STATE(311), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66256] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4309), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4473), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - STATE(1710), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4536), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66270] = 4, + ACTIONS(4311), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4538), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4313), 1, anon_sym_SEMI, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66284] = 4, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4540), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4315), 1, anon_sym_SEMI, - STATE(1713), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66298] = 4, + STATE(1542), 1, + aux_sym_declaration_repeat1, + [59559] = 4, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4307), 1, + anon_sym_LPAREN2, + ACTIONS(4317), 1, + aux_sym_preproc_include_token2, + STATE(1813), 1, + sym_preproc_argument_list, + [59572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - STATE(1735), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4545), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66312] = 5, - ACTIONS(3589), 1, + ACTIONS(4319), 1, + anon_sym_SEMI, + STATE(1581), 1, + aux_sym_declaration_repeat1, + [59585] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, - aux_sym_string_literal_token1, - ACTIONS(4358), 1, - sym_escape_sequence, - ACTIONS(4547), 1, - anon_sym_DQUOTE, - STATE(1698), 1, - aux_sym_string_literal_repeat1, - [66328] = 4, - ACTIONS(3589), 1, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(4321), 1, + sym_identifier, + STATE(1079), 1, + sym_enumerator_list, + [59598] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, - anon_sym_SQUOTE, - STATE(1699), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4364), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66342] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4323), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, - anon_sym_RPAREN, - ACTIONS(4551), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4325), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, anon_sym_COMMA, - STATE(1738), 1, - aux_sym_preproc_argument_list_repeat1, - [66355] = 4, + ACTIONS(4327), 1, + anon_sym_SEMI, + STATE(1543), 1, + aux_sym_declaration_repeat1, + [59637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, - anon_sym_RPAREN, - ACTIONS(4556), 1, - anon_sym_COLON, - STATE(1790), 1, - sym_gnu_asm_clobber_list, - [66368] = 3, - ACTIONS(3589), 1, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(4329), 1, + sym_identifier, + STATE(860), 1, + sym_enumerator_list, + [59650] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1737), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66379] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4331), 1, + anon_sym_SEMI, + STATE(1553), 1, + aux_sym_declaration_repeat1, + [59663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - ACTIONS(4562), 1, + ACTIONS(4333), 1, anon_sym_RBRACK_RBRACK, - STATE(1765), 1, + STATE(1642), 1, aux_sym_attribute_declaration_repeat1, - [66392] = 2, + [59676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 3, + ACTIONS(4335), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66401] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [59685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4568), 1, - anon_sym_RPAREN, - STATE(1807), 1, - aux_sym_parameter_list_repeat1, - [66414] = 4, + ACTIONS(4337), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(4572), 1, + ACTIONS(4339), 1, anon_sym_RPAREN, - STATE(1760), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66427] = 4, + STATE(1628), 1, + aux_sym_argument_list_repeat1, + [59711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4574), 1, - anon_sym_RBRACK_RBRACK, - STATE(1741), 1, - aux_sym_attribute_declaration_repeat1, - [66440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4576), 1, + ACTIONS(4341), 1, anon_sym_SEMI, - STATE(2200), 1, - sym_attribute_specifier, - [66453] = 2, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [66462] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4343), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3330), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4580), 1, - anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_generic_expression_repeat1, - [66475] = 4, - ACTIONS(3589), 1, + ACTIONS(4345), 1, + anon_sym_SEMI, + STATE(1560), 1, + aux_sym_declaration_repeat1, + [59750] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4582), 1, - aux_sym_preproc_include_token2, - ACTIONS(4584), 1, + ACTIONS(4307), 1, anon_sym_LPAREN2, - STATE(1978), 1, + ACTIONS(4347), 1, + aux_sym_preproc_include_token2, + STATE(1813), 1, sym_preproc_argument_list, - [66488] = 4, + [59763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4589), 1, - anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_generic_expression_repeat1, - [66501] = 4, + ACTIONS(4349), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4591), 1, - anon_sym_RPAREN, - STATE(1738), 1, - aux_sym_preproc_argument_list_repeat1, - [66514] = 2, + ACTIONS(4351), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 3, + ACTIONS(3916), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66523] = 4, + ACTIONS(4353), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4355), 1, + anon_sym_SEMI, + STATE(1562), 1, + aux_sym_declaration_repeat1, + [59815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4357), 1, + anon_sym_SEMI, + STATE(1567), 1, + aux_sym_declaration_repeat1, + [59828] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, anon_sym_COMMA, - ACTIONS(4595), 1, + ACTIONS(4359), 1, anon_sym_RBRACK_RBRACK, - STATE(1765), 1, + STATE(1602), 1, aux_sym_attribute_declaration_repeat1, - [66536] = 4, - ACTIONS(3), 1, + [59841] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(4597), 1, - sym_identifier, - STATE(1170), 1, - sym_enumerator_list, - [66549] = 4, + STATE(1490), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4361), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(4283), 1, anon_sym_COLON, - ACTIONS(4067), 1, + ACTIONS(4363), 1, anon_sym_RPAREN, - STATE(1782), 1, - sym_gnu_asm_output_operand_list, - [66562] = 2, + STATE(1919), 1, + sym_gnu_asm_goto_list, + [59865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 3, + ACTIONS(3916), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66571] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4043), 1, - anon_sym_RPAREN, - STATE(1827), 1, - sym_gnu_asm_output_operand_list, - [66584] = 4, + ACTIONS(4365), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3164), 1, + ACTIONS(2790), 1, anon_sym_LBRACE, - ACTIONS(4601), 1, + ACTIONS(4367), 1, sym_identifier, - STATE(1308), 1, + STATE(1079), 1, sym_enumerator_list, - [66597] = 4, + [59891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(4369), 3, anon_sym_COMMA, - ACTIONS(3326), 1, anon_sym_RPAREN, - STATE(1789), 1, - aux_sym_argument_list_repeat1, - [66610] = 4, + anon_sym_COLON, + [59900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, + ACTIONS(3077), 1, anon_sym_COMMA, - ACTIONS(4603), 1, + ACTIONS(4371), 1, anon_sym_RPAREN, - STATE(1763), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66623] = 3, - ACTIONS(3589), 1, - sym_comment, - STATE(1686), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4605), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66634] = 3, + STATE(1621), 1, + aux_sym_generic_expression_repeat1, + [59913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4609), 1, - anon_sym_RPAREN, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [66645] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4373), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4614), 1, - anon_sym_RPAREN, - STATE(1763), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66658] = 2, + ACTIONS(4375), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 3, + ACTIONS(3916), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66667] = 4, + ACTIONS(4377), 1, + anon_sym_SEMI, + STATE(1574), 1, + aux_sym_declaration_repeat1, + [59952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4621), 1, - anon_sym_RBRACK_RBRACK, - STATE(1765), 1, - aux_sym_attribute_declaration_repeat1, - [66680] = 4, + ACTIONS(4379), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, + ACTIONS(2412), 1, anon_sym_LBRACE, - ACTIONS(4623), 1, + ACTIONS(4381), 1, sym_identifier, - STATE(1066), 1, + STATE(718), 1, sym_field_declaration_list, - [66693] = 4, + [59978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(4383), 3, anon_sym_COMMA, - ACTIONS(4625), 1, - anon_sym_SEMI, - STATE(1792), 1, - aux_sym__declaration_declarator_repeat1, - [66706] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + [59987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 3, + ACTIONS(3251), 1, anon_sym_COMMA, + ACTIONS(4385), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66715] = 4, + STATE(1620), 1, + aux_sym_preproc_argument_list_repeat1, + [60000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4057), 1, - anon_sym_RPAREN, - STATE(1781), 1, - sym_gnu_asm_output_operand_list, - [66728] = 4, + ACTIONS(4285), 1, + anon_sym_COMMA, + ACTIONS(4387), 1, + anon_sym_RBRACK_RBRACK, + STATE(1636), 1, + aux_sym_attribute_declaration_repeat1, + [60013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(3073), 1, + anon_sym_COMMA, + ACTIONS(3091), 1, anon_sym_RPAREN, - ACTIONS(4631), 1, - anon_sym_COLON, - STATE(2222), 1, - sym_gnu_asm_goto_list, - [66741] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4584), 1, - anon_sym_LPAREN2, - ACTIONS(4633), 1, - aux_sym_preproc_include_token2, - STATE(1978), 1, - sym_preproc_argument_list, - [66754] = 4, + STATE(1628), 1, + aux_sym_argument_list_repeat1, + [60026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4635), 1, + ACTIONS(4389), 1, + anon_sym_COMMA, + ACTIONS(4392), 1, anon_sym_SEMI, - STATE(2006), 1, - sym_attribute_specifier, - [66767] = 2, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 3, + ACTIONS(3073), 1, anon_sym_COMMA, + ACTIONS(3083), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66776] = 4, + STATE(1628), 1, + aux_sym_argument_list_repeat1, + [60052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4641), 1, - anon_sym_RPAREN, - STATE(1805), 1, - aux_sym_preproc_params_repeat1, - [66789] = 4, + ACTIONS(4394), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(4396), 1, anon_sym_SEMI, - STATE(1815), 1, - aux_sym__declaration_declarator_repeat1, - [66802] = 2, + STATE(1614), 1, + aux_sym_declaration_repeat1, + [60078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 3, + ACTIONS(3916), 1, anon_sym_COMMA, + ACTIONS(4398), 1, anon_sym_SEMI, - anon_sym___attribute__, - [66811] = 2, + STATE(1637), 1, + aux_sym_declaration_repeat1, + [60091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 3, + ACTIONS(3251), 1, anon_sym_COMMA, + ACTIONS(4400), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66820] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4584), 1, - anon_sym_LPAREN2, - ACTIONS(4647), 1, - aux_sym_preproc_include_token2, - STATE(1978), 1, - sym_preproc_argument_list, - [66833] = 4, + STATE(1620), 1, + aux_sym_preproc_argument_list_repeat1, + [60104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4649), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4402), 1, anon_sym_SEMI, - STATE(2027), 1, - sym_attribute_specifier, - [66846] = 4, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(1913), 1, anon_sym_RBRACE, - ACTIONS(4651), 1, + ACTIONS(4404), 1, anon_sym_COMMA, - STATE(1780), 1, + STATE(1527), 1, aux_sym_initializer_list_repeat1, - [66859] = 4, + [60130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4654), 1, - anon_sym_RPAREN, - ACTIONS(4656), 1, - anon_sym_COLON, - STATE(1739), 1, - sym_gnu_asm_input_operand_list, - [66872] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, + ACTIONS(4275), 1, anon_sym_COLON, - ACTIONS(4658), 1, + ACTIONS(4408), 1, anon_sym_RPAREN, - STATE(1810), 1, - sym_gnu_asm_input_operand_list, - [66885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 1, - anon_sym_COMMA, - ACTIONS(4660), 1, - anon_sym_RBRACK_RBRACK, - STATE(1753), 1, - aux_sym_attribute_declaration_repeat1, - [66898] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4662), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [66907] = 4, + STATE(1533), 1, + sym_gnu_asm_output_operand_list, + [60156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4664), 1, + ACTIONS(4410), 1, anon_sym_SEMI, - STATE(1792), 1, - aux_sym__declaration_declarator_repeat1, - [66920] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4666), 1, - anon_sym_COMMA, - ACTIONS(4669), 1, - anon_sym_RPAREN, - STATE(1786), 1, - aux_sym__old_style_parameter_list_repeat1, - [66933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4039), 1, - anon_sym_RPAREN, - ACTIONS(4041), 1, - anon_sym_COLON, - STATE(1811), 1, - sym_gnu_asm_output_operand_list, - [66946] = 4, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, + ACTIONS(4271), 1, anon_sym_COLON, - ACTIONS(4671), 1, + ACTIONS(4412), 1, anon_sym_RPAREN, - STATE(1770), 1, - sym_gnu_asm_clobber_list, - [66959] = 4, + STATE(1535), 1, + sym_gnu_asm_input_operand_list, + [60182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3338), 1, - anon_sym_RPAREN, - STATE(1819), 1, - aux_sym_argument_list_repeat1, - [66972] = 4, + ACTIONS(4414), 1, + anon_sym_SEMI, + STATE(1566), 1, + aux_sym_declaration_repeat1, + [60195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, - anon_sym_COLON, - ACTIONS(4673), 1, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4416), 1, anon_sym_RPAREN, - STATE(2169), 1, - sym_gnu_asm_goto_list, - [66985] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4584), 1, - anon_sym_LPAREN2, - ACTIONS(4675), 1, - aux_sym_preproc_include_token2, - STATE(1978), 1, - sym_preproc_argument_list, - [66998] = 4, + STATE(1608), 1, + aux_sym_preproc_params_repeat1, + [60208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4680), 1, + ACTIONS(4418), 1, anon_sym_SEMI, - STATE(1792), 1, - aux_sym__declaration_declarator_repeat1, - [67011] = 4, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [60221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - ACTIONS(4682), 1, + ACTIONS(4420), 1, anon_sym_RBRACK_RBRACK, - STATE(1825), 1, + STATE(1636), 1, aux_sym_attribute_declaration_repeat1, - [67024] = 4, + [60234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(4422), 1, anon_sym_COMMA, - ACTIONS(3328), 1, + ACTIONS(4424), 1, anon_sym_RPAREN, - STATE(1819), 1, - aux_sym_argument_list_repeat1, - [67037] = 4, + STATE(1632), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [60247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(4426), 1, anon_sym_COMMA, - ACTIONS(4684), 1, + ACTIONS(4429), 1, anon_sym_RPAREN, - STATE(1738), 1, - aux_sym_preproc_argument_list_repeat1, - [67050] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2049), 1, - anon_sym_RBRACE, - ACTIONS(4686), 1, - anon_sym_COMMA, - STATE(1780), 1, - aux_sym_initializer_list_repeat1, - [67063] = 2, + STATE(1604), 1, + aux_sym_parameter_list_repeat1, + [60260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 3, + ACTIONS(4431), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [67072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3551), 1, - anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_RPAREN, - STATE(1738), 1, - aux_sym_preproc_argument_list_repeat1, - [67085] = 4, + [60269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_COMMA, - ACTIONS(4695), 1, - anon_sym_RPAREN, - STATE(1799), 1, - aux_sym_parameter_list_repeat1, - [67098] = 4, - ACTIONS(3), 1, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4433), 1, + anon_sym_SEMI, + STATE(1888), 1, + sym_attribute_specifier, + [60282] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(4697), 1, - sym_identifier, - STATE(1026), 1, - sym_field_declaration_list, - [67111] = 4, + ACTIONS(4307), 1, + anon_sym_LPAREN2, + ACTIONS(4435), 1, + aux_sym_preproc_include_token2, + STATE(1813), 1, + sym_preproc_argument_list, + [60295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4437), 1, anon_sym_COMMA, - ACTIONS(4702), 1, + ACTIONS(4440), 1, anon_sym_RPAREN, - STATE(1801), 1, + STATE(1608), 1, aux_sym_preproc_params_repeat1, - [67124] = 4, + [60308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(4258), 1, anon_sym_COMMA, - ACTIONS(3348), 1, - anon_sym_RBRACE, - STATE(1813), 1, - aux_sym_initializer_list_repeat1, - [67137] = 3, + ACTIONS(4442), 1, + anon_sym_RPAREN, + STATE(1604), 1, + aux_sym_parameter_list_repeat1, + [60321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, + ACTIONS(4444), 1, anon_sym_EQ, - ACTIONS(4137), 2, + ACTIONS(3827), 2, anon_sym_COMMA, anon_sym_RBRACE, - [67148] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(4706), 1, - sym_identifier, - STATE(1078), 1, - sym_field_declaration_list, - [67161] = 4, + [60332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4708), 1, - anon_sym_RPAREN, - STATE(1801), 1, - aux_sym_preproc_params_repeat1, - [67174] = 3, - ACTIONS(3589), 1, - sym_comment, - STATE(1707), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4710), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [67185] = 4, + ACTIONS(4446), 1, + anon_sym_SEMI, + STATE(1616), 1, + aux_sym_declaration_repeat1, + [60345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4712), 1, - anon_sym_RPAREN, - STATE(1799), 1, - aux_sym_parameter_list_repeat1, - [67198] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4584), 1, - anon_sym_LPAREN2, - ACTIONS(4714), 1, - aux_sym_preproc_include_token2, - STATE(1978), 1, - sym_preproc_argument_list, - [67211] = 4, + ACTIONS(4448), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(4716), 1, - sym_identifier, - STATE(1308), 1, - sym_enumerator_list, - [67224] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4450), 1, + anon_sym_SEMI, + STATE(1635), 1, + aux_sym_declaration_repeat1, + [60371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, - anon_sym_COLON, - ACTIONS(4718), 1, - anon_sym_RPAREN, - STATE(1821), 1, - sym_gnu_asm_clobber_list, - [67237] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4452), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4720), 1, - anon_sym_RPAREN, - STATE(1822), 1, - sym_gnu_asm_input_operand_list, - [67250] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4454), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4722), 1, + ACTIONS(4456), 1, anon_sym_SEMI, - STATE(1785), 1, - aux_sym__declaration_declarator_repeat1, - [67263] = 4, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_RBRACE, - ACTIONS(4724), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - STATE(1780), 1, - aux_sym_initializer_list_repeat1, - [67276] = 4, + ACTIONS(4458), 1, + anon_sym_SEMI, + STATE(1589), 1, + aux_sym_declaration_repeat1, + [60423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, + ACTIONS(3065), 1, anon_sym_COMMA, - ACTIONS(3322), 1, + ACTIONS(3067), 1, anon_sym_RBRACE, - STATE(1796), 1, + STATE(1594), 1, aux_sym_initializer_list_repeat1, - [67289] = 4, + [60436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4625), 1, + ACTIONS(4460), 1, anon_sym_SEMI, - STATE(1792), 1, - aux_sym__declaration_declarator_repeat1, - [67302] = 4, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3334), 1, + ACTIONS(3382), 1, anon_sym_RPAREN, - STATE(1794), 1, - aux_sym_argument_list_repeat1, - [67315] = 4, + ACTIONS(4462), 1, + anon_sym_COMMA, + STATE(1620), 1, + aux_sym_preproc_argument_list_repeat1, + [60462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(4465), 1, anon_sym_COMMA, - ACTIONS(4726), 1, + ACTIONS(4468), 1, anon_sym_RPAREN, - STATE(1819), 1, - aux_sym_argument_list_repeat1, - [67328] = 4, + STATE(1621), 1, + aux_sym_generic_expression_repeat1, + [60475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4470), 1, + sym_identifier, + STATE(732), 1, + sym_field_declaration_list, + [60488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3330), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4728), 1, - anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_generic_expression_repeat1, - [67341] = 4, + ACTIONS(4472), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 1, - anon_sym_RPAREN, - ACTIONS(4730), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - STATE(1819), 1, - aux_sym_argument_list_repeat1, - [67354] = 3, - ACTIONS(3589), 1, + ACTIONS(4474), 1, + anon_sym_RPAREN, + STATE(1620), 1, + aux_sym_preproc_argument_list_repeat1, + [60514] = 3, + ACTIONS(3317), 1, sym_comment, - STATE(1678), 1, + STATE(1508), 1, aux_sym_char_literal_repeat1, - ACTIONS(4733), 2, + ACTIONS(4476), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [67365] = 4, + [60525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, - anon_sym_COLON, - ACTIONS(4735), 1, + ACTIONS(4478), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2078), 1, - sym_gnu_asm_goto_list, - [67378] = 4, + anon_sym_COLON, + [60534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, + ACTIONS(4279), 1, anon_sym_COLON, - ACTIONS(4737), 1, + ACTIONS(4480), 1, anon_sym_RPAREN, - STATE(1823), 1, + STATE(1536), 1, sym_gnu_asm_clobber_list, - [67391] = 4, + [60547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, - anon_sym_COLON, - ACTIONS(4739), 1, + ACTIONS(3187), 1, anon_sym_RPAREN, - STATE(2084), 1, - sym_gnu_asm_goto_list, - [67404] = 4, + ACTIONS(4482), 1, + anon_sym_COMMA, + STATE(1628), 1, + aux_sym_argument_list_repeat1, + [60560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(4741), 1, + ACTIONS(4485), 1, anon_sym_RPAREN, - STATE(1819), 1, + STATE(1628), 1, aux_sym_argument_list_repeat1, - [67417] = 4, + [60573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, - anon_sym_COMMA, - ACTIONS(4743), 1, - anon_sym_RBRACK_RBRACK, - STATE(1765), 1, - aux_sym_attribute_declaration_repeat1, - [67430] = 4, + ACTIONS(4487), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [60582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4745), 1, + ACTIONS(4489), 3, anon_sym_COMMA, - ACTIONS(4747), 1, anon_sym_RPAREN, - STATE(1786), 1, - aux_sym__old_style_parameter_list_repeat1, - [67443] = 4, + anon_sym_COLON, + [60591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4749), 1, + ACTIONS(4422), 1, + anon_sym_COMMA, + ACTIONS(4491), 1, anon_sym_RPAREN, - STATE(1788), 1, - sym_gnu_asm_input_operand_list, - [67456] = 4, + STATE(1633), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [60604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4751), 1, - anon_sym_SEMI, - STATE(2056), 1, - sym_attribute_specifier, - [67469] = 4, + ACTIONS(4493), 1, + anon_sym_COMMA, + ACTIONS(4496), 1, + anon_sym_RPAREN, + STATE(1633), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [60617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4753), 1, - sym_identifier, - STATE(1875), 1, - sym_variadic_parameter, - [67482] = 3, + ACTIONS(4498), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [60626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4755), 1, - sym_identifier, - STATE(1893), 1, - sym_attribute, - [67492] = 2, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4500), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4757), 2, + ACTIONS(4502), 1, anon_sym_COMMA, + ACTIONS(4505), 1, anon_sym_RBRACK_RBRACK, - [67500] = 2, + STATE(1636), 1, + aux_sym_attribute_declaration_repeat1, + [60652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 2, + ACTIONS(3916), 1, anon_sym_COMMA, + ACTIONS(4507), 1, anon_sym_SEMI, - [67508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1867), 1, - sym_parenthesized_expression, - [67518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(117), 1, - sym_compound_statement, - [67528] = 3, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4763), 1, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4509), 1, sym_identifier, - ACTIONS(4765), 1, - anon_sym_LPAREN2, - [67538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1709), 1, - sym_compound_statement, - [67548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(278), 1, - sym_compound_statement, - [67558] = 3, + STATE(1695), 1, + sym_variadic_parameter, + [60678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(92), 1, - sym_compound_statement, - [67568] = 3, + ACTIONS(4511), 1, + anon_sym_COMMA, + ACTIONS(4513), 1, + anon_sym_RPAREN, + STATE(1532), 1, + aux_sym__old_style_parameter_list_repeat1, + [60691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1838), 1, - sym_parenthesized_expression, - [67578] = 3, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4515), 1, + anon_sym_SEMI, + STATE(1885), 1, + sym_attribute_specifier, + [60704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(2075), 1, - sym_parenthesized_expression, - [67588] = 3, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4517), 1, + anon_sym_SEMI, + STATE(1595), 1, + aux_sym_declaration_repeat1, + [60717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1692), 1, - sym_compound_statement, - [67598] = 2, + ACTIONS(4285), 1, + anon_sym_COMMA, + ACTIONS(4519), 1, + anon_sym_RBRACK_RBRACK, + STATE(1636), 1, + aux_sym_attribute_declaration_repeat1, + [60730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4695), 2, + ACTIONS(3127), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [67606] = 2, + anon_sym_RBRACE, + [60738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 2, + ACTIONS(4035), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [67614] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [60746] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(422), 1, - sym_parenthesized_expression, - [67624] = 3, + ACTIONS(4521), 1, + aux_sym_preproc_include_token2, + ACTIONS(4523), 1, + sym_preproc_arg, + [60756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1874), 1, - sym_parenthesized_expression, - [67634] = 3, + ACTIONS(4525), 1, + sym_identifier, + STATE(1558), 1, + sym_attribute, + [60766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(430), 1, - sym_parenthesized_expression, - [67644] = 3, + ACTIONS(4505), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [60774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1906), 1, - sym_parenthesized_expression, - [67654] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4769), 1, - aux_sym_preproc_include_token2, - ACTIONS(4771), 1, - sym_preproc_arg, - [67664] = 3, + ACTIONS(4527), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, - STATE(2219), 1, + STATE(335), 1, sym_parenthesized_expression, - [67674] = 3, + [60792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE, - STATE(251), 1, - sym_compound_statement, - [67684] = 3, + ACTIONS(4531), 1, + anon_sym_LPAREN2, + STATE(1855), 1, + sym_parenthesized_expression, + [60802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1980), 1, + STATE(1689), 1, sym_parenthesized_expression, - [67694] = 2, + [60812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4773), 2, + ACTIONS(4533), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [67702] = 3, + [60820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1902), 1, - sym_parenthesized_expression, - [67712] = 2, + ACTIONS(376), 1, + anon_sym_LBRACE, + STATE(179), 1, + sym_compound_statement, + [60830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67720] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4775), 1, - aux_sym_preproc_include_token2, - ACTIONS(4777), 1, - sym_preproc_arg, - [67730] = 3, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(315), 1, + sym_parenthesized_expression, + [60840] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1719), 1, + STATE(1518), 1, sym_compound_statement, - [67740] = 3, + [60850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1915), 1, - sym_parenthesized_expression, - [67750] = 3, - ACTIONS(3589), 1, + ACTIONS(376), 1, + anon_sym_LBRACE, + STATE(206), 1, + sym_compound_statement, + [60860] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 1, - aux_sym_preproc_include_token2, - ACTIONS(4781), 1, - sym_preproc_arg, - [67760] = 3, + ACTIONS(376), 1, + anon_sym_LBRACE, + STATE(219), 1, + sym_compound_statement, + [60870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(409), 1, - sym_parenthesized_expression, - [67770] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(219), 1, + sym_compound_statement, + [60880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(443), 1, + STATE(1719), 1, sym_parenthesized_expression, - [67780] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4783), 1, - aux_sym_preproc_include_token2, - ACTIONS(4785), 1, - sym_preproc_arg, - [67790] = 3, + [60890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1884), 1, + STATE(1724), 1, sym_parenthesized_expression, - [67800] = 3, + [60900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(442), 1, + STATE(1751), 1, sym_parenthesized_expression, - [67810] = 3, + [60910] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(181), 1, sym_compound_statement, - [67820] = 3, + [60920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4755), 1, - sym_identifier, - STATE(1783), 1, - sym_attribute, - [67830] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1476), 1, + sym_compound_statement, + [60930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, + ACTIONS(4535), 1, anon_sym_COMMA, - [67840] = 3, + ACTIONS(4537), 1, + anon_sym_RBRACE, + [60940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, - anon_sym_LBRACE, - STATE(275), 1, - sym_compound_statement, - [67850] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4789), 1, - aux_sym_preproc_include_token2, - ACTIONS(4791), 1, - sym_preproc_arg, - [67860] = 2, + ACTIONS(3602), 1, + anon_sym_RBRACE, + ACTIONS(4535), 1, + anon_sym_COMMA, + [60950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(4539), 1, sym_identifier, - [67868] = 3, + ACTIONS(4541), 1, + anon_sym_LPAREN2, + [60960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(413), 1, + STATE(1706), 1, sym_parenthesized_expression, - [67878] = 3, + [60970] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1673), 1, + STATE(179), 1, sym_compound_statement, - [67888] = 3, + [60980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_compound_statement, - [67898] = 3, + ACTIONS(4531), 1, + anon_sym_LPAREN2, + STATE(1673), 1, + sym_parenthesized_expression, + [60990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(2072), 1, - sym_argument_list, - [67908] = 3, + STATE(1912), 1, + sym_parenthesized_expression, + [61000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(181), 1, + STATE(1480), 1, sym_compound_statement, - [67918] = 2, + [61010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 2, - anon_sym_COMMA, + ACTIONS(4543), 1, + sym_identifier, + ACTIONS(4545), 1, anon_sym_RPAREN, - [67926] = 2, + [61020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67934] = 3, - ACTIONS(3589), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(161), 1, + sym_compound_statement, + [61030] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(4547), 1, aux_sym_preproc_include_token2, - ACTIONS(4800), 1, + ACTIONS(4549), 1, sym_preproc_arg, - [67944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67952] = 2, + [61040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [67960] = 2, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(321), 1, + sym_parenthesized_expression, + [61050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [67968] = 2, + ACTIONS(4531), 1, + anon_sym_LPAREN2, + STATE(1722), 1, + sym_parenthesized_expression, + [61060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67976] = 2, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(322), 1, + sym_parenthesized_expression, + [61070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67984] = 3, + ACTIONS(4525), 1, + sym_identifier, + STATE(1571), 1, + sym_attribute, + [61080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - STATE(2088), 1, + STATE(1853), 1, sym_argument_list, - [67994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(102), 1, - sym_compound_statement, - [68004] = 3, + [61090] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(292), 1, + STATE(1459), 1, sym_compound_statement, - [68014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4802), 1, - sym_identifier, - ACTIONS(4804), 1, - anon_sym_LPAREN2, - [68024] = 3, + [61100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4525), 1, sym_identifier, - ACTIONS(4808), 1, - anon_sym_RPAREN, - [68034] = 3, + STATE(1647), 1, + sym_attribute, + [61110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4551), 2, anon_sym_COMMA, - ACTIONS(4810), 1, - anon_sym_RBRACE, - [68044] = 3, + anon_sym_RBRACK_RBRACK, + [61118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1864), 1, + STATE(1668), 1, sym_parenthesized_expression, - [68054] = 3, + [61128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE, - STATE(292), 1, - sym_compound_statement, - [68064] = 3, + ACTIONS(3125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1850), 1, + STATE(1653), 1, sym_parenthesized_expression, - [68074] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4812), 1, - aux_sym_preproc_include_token2, - ACTIONS(4814), 1, - sym_preproc_arg, - [68084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4621), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [68092] = 3, + [61146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(2008), 1, + STATE(1929), 1, sym_parenthesized_expression, - [68102] = 2, + [61156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3131), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 2, + ACTIONS(4553), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [68110] = 3, + [61172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(195), 1, + STATE(215), 1, sym_compound_statement, - [68120] = 3, - ACTIONS(3589), 1, + [61182] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4816), 1, - aux_sym_preproc_include_token2, - ACTIONS(4818), 1, - sym_preproc_arg, - [68130] = 2, + ACTIONS(4555), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4557), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68138] = 3, - ACTIONS(3589), 1, + [61198] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4560), 1, aux_sym_preproc_include_token2, - ACTIONS(4824), 1, + ACTIONS(4562), 1, + sym_preproc_arg, + [61208] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4564), 1, + aux_sym_preproc_include_token2, + ACTIONS(4566), 1, sym_preproc_arg, - [68148] = 3, + [61218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - STATE(425), 1, - sym_parenthesized_expression, - [68158] = 3, + STATE(1770), 1, + sym_argument_list, + [61228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1837), 1, - sym_parenthesized_expression, - [68168] = 3, + ACTIONS(4267), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(169), 1, + STATE(1488), 1, sym_compound_statement, - [68178] = 3, - ACTIONS(3589), 1, + [61246] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(4568), 1, aux_sym_preproc_include_token2, - ACTIONS(4828), 1, + ACTIONS(4570), 1, sym_preproc_arg, - [68188] = 3, + [61256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, - STATE(447), 1, + STATE(348), 1, sym_parenthesized_expression, - [68198] = 3, + [61266] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4572), 1, + aux_sym_preproc_include_token2, + ACTIONS(4574), 1, + sym_preproc_arg, + [61276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(428), 1, + STATE(1656), 1, sym_parenthesized_expression, - [68208] = 3, + [61286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(252), 1, - sym_compound_statement, - [68218] = 3, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(350), 1, + sym_parenthesized_expression, + [61296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4525), 1, sym_identifier, - STATE(1793), 1, + STATE(1537), 1, sym_attribute, - [68228] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4830), 1, - aux_sym_preproc_include_token2, - ACTIONS(4832), 1, - sym_preproc_arg, - [68238] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4834), 1, - aux_sym_preproc_include_token2, - ACTIONS(4836), 1, - sym_preproc_arg, - [68248] = 3, + [61306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4576), 1, + sym_identifier, + ACTIONS(4578), 1, anon_sym_LPAREN2, - STATE(445), 1, - sym_parenthesized_expression, - [68258] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4838), 1, - aux_sym_preproc_include_token2, - ACTIONS(4840), 1, - sym_preproc_arg, - [68268] = 3, + [61316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(294), 1, - sym_compound_statement, - [68278] = 3, - ACTIONS(3), 1, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61324] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE, - STATE(344), 1, - sym_compound_statement, - [68288] = 3, + ACTIONS(4580), 1, + aux_sym_preproc_include_token2, + ACTIONS(4582), 1, + sym_preproc_arg, + [61334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - STATE(310), 1, + STATE(247), 1, sym_compound_statement, - [68298] = 3, + [61344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym_compound_statement, - [68308] = 3, - ACTIONS(3589), 1, + ACTIONS(3187), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61352] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4842), 1, + ACTIONS(4584), 1, aux_sym_preproc_include_token2, - ACTIONS(4844), 1, + ACTIONS(4586), 1, sym_preproc_arg, - [68318] = 3, - ACTIONS(3589), 1, + [61362] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4846), 1, + ACTIONS(4588), 1, aux_sym_preproc_include_token2, - ACTIONS(4848), 1, + ACTIONS(4590), 1, sym_preproc_arg, - [68328] = 3, + [61372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, - STATE(1997), 1, + STATE(324), 1, sym_parenthesized_expression, - [68338] = 2, + [61382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 2, + ACTIONS(4440), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4755), 1, - sym_identifier, - STATE(1745), 1, - sym_attribute, - [68356] = 3, - ACTIONS(3589), 1, + [61390] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(4592), 1, aux_sym_preproc_include_token2, - ACTIONS(4854), 1, + ACTIONS(4594), 1, sym_preproc_arg, - [68366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(439), 1, - sym_parenthesized_expression, - [68376] = 3, + [61400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, - STATE(1913), 1, + STATE(326), 1, sym_parenthesized_expression, - [68386] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4856), 1, - aux_sym_preproc_include_token2, - ACTIONS(4858), 1, - sym_preproc_arg, - [68396] = 3, - ACTIONS(3589), 1, + [61410] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4860), 1, + ACTIONS(4596), 1, aux_sym_preproc_include_token2, - ACTIONS(4862), 1, + ACTIONS(4598), 1, sym_preproc_arg, - [68406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(440), 1, - sym_parenthesized_expression, - [68416] = 3, + [61420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1731), 1, - sym_compound_statement, - [68426] = 3, - ACTIONS(3589), 1, + ACTIONS(4600), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [61428] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4864), 1, + ACTIONS(4602), 1, aux_sym_preproc_include_token2, - ACTIONS(4866), 1, + ACTIONS(4604), 1, sym_preproc_arg, - [68436] = 3, - ACTIONS(3589), 1, + [61438] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(4606), 1, aux_sym_preproc_include_token2, - ACTIONS(4870), 1, + ACTIONS(4608), 1, sym_preproc_arg, - [68446] = 3, - ACTIONS(3589), 1, + [61448] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(4610), 1, aux_sym_preproc_include_token2, - ACTIONS(4874), 1, + ACTIONS(4612), 1, sym_preproc_arg, - [68456] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4876), 1, - anon_sym_RPAREN, - [68463] = 2, + [61458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4878), 1, - anon_sym_RPAREN, - [68470] = 2, + ACTIONS(432), 1, + anon_sym_LBRACE, + STATE(198), 1, + sym_compound_statement, + [61468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4880), 1, + ACTIONS(4429), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [68477] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4882), 1, - anon_sym_SEMI, - [68484] = 2, - ACTIONS(3589), 1, + [61476] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4884), 1, + ACTIONS(4614), 1, aux_sym_preproc_include_token2, - [68491] = 2, + ACTIONS(4616), 1, + sym_preproc_arg, + [61486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, - anon_sym_RPAREN, - [68498] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4888), 1, - aux_sym_preproc_include_token2, - [68505] = 2, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(95), 1, + sym_compound_statement, + [61496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4890), 1, - anon_sym_RPAREN, - [68512] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4892), 1, - aux_sym_preproc_include_token2, - [68519] = 2, + ACTIONS(432), 1, + anon_sym_LBRACE, + STATE(217), 1, + sym_compound_statement, + [61506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4894), 1, - anon_sym_SEMI, - [68526] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4896), 1, - aux_sym_preproc_include_token2, - [68533] = 2, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(89), 1, + sym_compound_statement, + [61516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 1, - anon_sym_RPAREN, - [68540] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4900), 1, - aux_sym_preproc_include_token2, - [68547] = 2, + ACTIONS(3159), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4902), 1, - anon_sym_RPAREN, - [68554] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4904), 1, - aux_sym_preproc_include_token2, - [68561] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4906), 1, - aux_sym_preproc_include_token2, - [68568] = 2, - ACTIONS(3589), 1, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym_compound_statement, + [61534] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4618), 1, aux_sym_preproc_include_token2, - [68575] = 2, + ACTIONS(4620), 1, + sym_preproc_arg, + [61544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_preproc_if_token2, - [68582] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4912), 1, - aux_sym_preproc_include_token2, - [68589] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4914), 1, - aux_sym_preproc_include_token2, - [68596] = 2, - ACTIONS(3589), 1, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(341), 1, + sym_parenthesized_expression, + [61554] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4916), 1, + ACTIONS(4622), 1, aux_sym_preproc_include_token2, - [68603] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4918), 1, - sym_primitive_type, - [68610] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - sym_identifier, - [68617] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - sym_identifier, - [68624] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4924), 1, - aux_sym_preproc_if_token2, - [68631] = 2, + ACTIONS(4624), 1, + sym_preproc_arg, + [61564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4926), 1, - sym_identifier, - [68638] = 2, - ACTIONS(3589), 1, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(336), 1, + sym_parenthesized_expression, + [61574] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(4626), 1, aux_sym_preproc_include_token2, - [68645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4930), 1, - sym_identifier, - [68652] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4932), 1, - anon_sym_SEMI, - [68659] = 2, + [61581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 1, - anon_sym_SEMI, - [68666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_COLON, - [68673] = 2, + ACTIONS(4628), 1, + anon_sym_STAR, + [61588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 1, + ACTIONS(4630), 1, aux_sym_preproc_if_token2, - [68680] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3400), 1, - anon_sym_SEMI, - [68687] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4940), 1, - anon_sym_SEMI, - [68694] = 2, + [61595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4942), 1, + ACTIONS(4632), 1, anon_sym_RPAREN, - [68701] = 2, + [61602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3402), 1, + ACTIONS(4634), 1, anon_sym_RPAREN, - [68708] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4944), 1, - aux_sym_preproc_include_token2, - [68715] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4582), 1, - aux_sym_preproc_include_token2, - [68722] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 1, - anon_sym_SEMI, - [68729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4948), 1, - anon_sym_SEMI, - [68736] = 2, + [61609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_SEMI, - [68743] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4950), 1, - sym_identifier, - [68750] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 1, - anon_sym_COLON, - [68757] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4954), 1, + ACTIONS(4636), 1, anon_sym_RPAREN, - [68764] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4956), 1, - aux_sym_preproc_include_token2, - [68771] = 2, + [61616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 1, - aux_sym_preproc_if_token2, - [68778] = 2, + ACTIONS(4638), 1, + anon_sym_RBRACE, + [61623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, - sym_identifier, - [68785] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3685), 1, - aux_sym_preproc_include_token2, - [68792] = 2, + ACTIONS(4640), 1, + aux_sym_preproc_if_token2, + [61630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4642), 1, aux_sym_preproc_if_token2, - [68799] = 2, + [61637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 1, + ACTIONS(4644), 1, anon_sym_SEMI, - [68806] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4966), 1, - sym_identifier, - [68813] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4968), 1, - aux_sym_preproc_include_token2, - [68820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4970), 1, - anon_sym_RPAREN, - [68827] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 1, - anon_sym_RPAREN, - [68834] = 2, + [61644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4974), 1, - anon_sym_RPAREN, - [68841] = 2, + ACTIONS(4646), 1, + aux_sym_preproc_if_token2, + [61651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 1, + ACTIONS(4648), 1, aux_sym_preproc_if_token2, - [68848] = 2, - ACTIONS(3589), 1, + [61658] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4978), 1, + ACTIONS(4650), 1, aux_sym_preproc_include_token2, - [68855] = 2, + [61665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 1, + ACTIONS(4652), 1, aux_sym_preproc_if_token2, - [68862] = 2, + [61672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, + ACTIONS(4654), 1, aux_sym_preproc_if_token2, - [68869] = 2, + [61679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, + ACTIONS(4656), 1, aux_sym_preproc_if_token2, - [68876] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 1, - sym_identifier, - [68883] = 2, - ACTIONS(3), 1, + [61686] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4810), 1, - anon_sym_RBRACE, - [68890] = 2, + ACTIONS(4658), 1, + aux_sym_preproc_include_token2, + [61693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 1, + ACTIONS(3093), 1, anon_sym_SEMI, - [68897] = 2, + [61700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 1, - anon_sym_STAR, - [68904] = 2, + ACTIONS(4660), 1, + anon_sym_SEMI, + [61707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, - sym_identifier, - [68911] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4994), 1, - aux_sym_preproc_include_token2, - [68918] = 2, + ACTIONS(4662), 1, + aux_sym_preproc_if_token2, + [61714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(4664), 1, anon_sym_SEMI, - [68925] = 2, + [61721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(3169), 1, anon_sym_SEMI, - [68932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 1, - anon_sym_COMMA, - [68939] = 2, + [61728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, - anon_sym_SEMI, - [68946] = 2, + ACTIONS(4666), 1, + anon_sym_RPAREN, + [61735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 1, - anon_sym_STAR, - [68953] = 2, + ACTIONS(4668), 1, + sym_identifier, + [61742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_SEMI, - [68960] = 2, + ACTIONS(4670), 1, + aux_sym_preproc_if_token2, + [61749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, - sym_identifier, - [68967] = 2, + ACTIONS(4672), 1, + aux_sym_preproc_if_token2, + [61756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 1, - anon_sym_RPAREN, - [68974] = 2, + ACTIONS(4674), 1, + anon_sym_COLON, + [61763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, - anon_sym_SEMI, - [68981] = 2, + ACTIONS(3886), 1, + anon_sym_COMMA, + [61770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 1, + ACTIONS(3163), 1, anon_sym_SEMI, - [68988] = 2, - ACTIONS(3589), 1, + [61777] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(4676), 1, aux_sym_preproc_include_token2, - [68995] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - anon_sym_SEMI, - [69002] = 2, + [61784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, - aux_sym_preproc_if_token2, - [69009] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(5016), 1, - aux_sym_preproc_include_token2, - [69016] = 2, + ACTIONS(4678), 1, + anon_sym_RBRACE, + [61791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(4680), 1, anon_sym_SEMI, - [69023] = 2, - ACTIONS(3589), 1, + [61798] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(4682), 1, aux_sym_preproc_include_token2, - [69030] = 2, + [61805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_SEMI, - [69037] = 2, + ACTIONS(4684), 1, + anon_sym_RPAREN, + [61812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(4686), 1, sym_identifier, - [69044] = 2, + [61819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, - sym_identifier, - [69051] = 2, + ACTIONS(4688), 1, + anon_sym_COLON, + [61826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 1, + anon_sym_RPAREN, + [61833] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4692), 1, + aux_sym_preproc_include_token2, + [61840] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4694), 1, + aux_sym_preproc_include_token2, + [61847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_COLON, - [69058] = 2, - ACTIONS(3), 1, + ACTIONS(4696), 1, + anon_sym_STAR, + [61854] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5028), 1, - aux_sym_preproc_if_token2, - [69065] = 2, + ACTIONS(4347), 1, + aux_sym_preproc_include_token2, + [61861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, - anon_sym_RBRACE, - [69072] = 2, + ACTIONS(4698), 1, + anon_sym_SEMI, + [61868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(4700), 1, anon_sym_SEMI, - [69079] = 2, + [61875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, + ACTIONS(4702), 1, anon_sym_SEMI, - [69086] = 2, - ACTIONS(3), 1, + [61882] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5032), 1, - aux_sym_preproc_if_token2, - [69093] = 2, + ACTIONS(4704), 1, + aux_sym_preproc_include_token2, + [61889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_RPAREN, - [69100] = 2, + ACTIONS(4706), 1, + aux_sym_preproc_if_token2, + [61896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - sym_identifier, - [69107] = 2, - ACTIONS(3589), 1, + ACTIONS(4708), 1, + anon_sym_SEMI, + [61903] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5038), 1, + ACTIONS(4710), 1, aux_sym_preproc_include_token2, - [69114] = 2, + [61910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(4712), 1, aux_sym_preproc_if_token2, - [69121] = 2, + [61917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 1, + ACTIONS(4714), 1, aux_sym_preproc_if_token2, - [69128] = 2, + [61924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, + ACTIONS(4716), 1, anon_sym_SEMI, - [69135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 1, - anon_sym_RBRACE, - [69142] = 2, + [61931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, - anon_sym_RPAREN, - [69149] = 2, + ACTIONS(4718), 1, + aux_sym_preproc_if_token2, + [61938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - sym_identifier, - [69156] = 2, - ACTIONS(3589), 1, + ACTIONS(4720), 1, + anon_sym_COLON, + [61945] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4714), 1, + ACTIONS(4722), 1, aux_sym_preproc_include_token2, - [69163] = 2, - ACTIONS(3), 1, + [61952] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5050), 1, - anon_sym_SEMI, - [69170] = 2, + ACTIONS(4724), 1, + aux_sym_preproc_include_token2, + [61959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 1, + ACTIONS(4726), 1, anon_sym_SEMI, - [69177] = 2, - ACTIONS(3), 1, + [61966] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5054), 1, - sym_identifier, - [69184] = 2, + ACTIONS(4305), 1, + aux_sym_preproc_include_token2, + [61973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 1, + ACTIONS(3153), 1, anon_sym_COLON, - [69191] = 2, + [61980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 1, - anon_sym_RPAREN, - [69198] = 2, - ACTIONS(3), 1, + ACTIONS(3171), 1, + anon_sym_SEMI, + [61987] = 2, + ACTIONS(3055), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5060), 1, - sym_identifier, - [69205] = 2, - ACTIONS(3), 1, + [61994] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5062), 1, - anon_sym_STAR, - [69212] = 2, - ACTIONS(3), 1, + ACTIONS(4728), 1, + aux_sym_preproc_include_token2, + [62001] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5064), 1, - aux_sym_preproc_if_token2, - [69219] = 2, - ACTIONS(3), 1, + ACTIONS(4730), 1, + aux_sym_preproc_include_token2, + [62008] = 2, + ACTIONS(3059), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5066), 1, - aux_sym_preproc_if_token2, - [69226] = 2, - ACTIONS(3), 1, + [62015] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5068), 1, - sym_identifier, - [69233] = 2, + ACTIONS(4732), 1, + aux_sym_preproc_include_token2, + [62022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 1, - sym_identifier, - [69240] = 2, + ACTIONS(4734), 1, + aux_sym_preproc_if_token2, + [62029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(4736), 1, sym_identifier, - [69247] = 2, + [62036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_COMMA, - [69254] = 2, + ACTIONS(4738), 1, + sym_identifier, + [62043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 1, + ACTIONS(4740), 1, sym_identifier, - [69261] = 2, + [62050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 1, + ACTIONS(3095), 1, anon_sym_SEMI, - [69268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5076), 1, - aux_sym_preproc_if_token2, - [69275] = 2, + [62057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(4742), 1, anon_sym_SEMI, - [69282] = 2, + [62064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_preproc_if_token2, - [69289] = 2, - ACTIONS(3), 1, + ACTIONS(4744), 1, + anon_sym_RPAREN, + [62071] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5082), 1, - sym_identifier, - [69296] = 2, + ACTIONS(4746), 1, + aux_sym_preproc_include_token2, + [62078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, + ACTIONS(4748), 1, sym_identifier, - [69303] = 2, - ACTIONS(3), 1, + [62085] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_SEMI, - [69310] = 2, + ACTIONS(4317), 1, + aux_sym_preproc_include_token2, + [62092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 1, - aux_sym_preproc_if_token2, - [69317] = 2, + ACTIONS(4750), 1, + sym_identifier, + [62099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5088), 1, + ACTIONS(4752), 1, aux_sym_preproc_if_token2, - [69324] = 2, - ACTIONS(3), 1, + [62106] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3444), 1, - anon_sym_RPAREN, - [69331] = 2, + ACTIONS(4754), 1, + aux_sym_preproc_include_token2, + [62113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_SEMI, - [69338] = 2, + ACTIONS(3161), 1, + anon_sym_RPAREN, + [62120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3157), 1, anon_sym_RPAREN, - [69345] = 2, - ACTIONS(3), 1, + [62127] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3388), 1, - anon_sym_SEMI, - [69352] = 2, + ACTIONS(4756), 1, + aux_sym_preproc_include_token2, + [62134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 1, + ACTIONS(4758), 1, anon_sym_RPAREN, - [69359] = 2, + [62141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - sym_identifier, - [69366] = 2, - ACTIONS(3), 1, + ACTIONS(3067), 1, + anon_sym_RBRACE, + [62148] = 2, + ACTIONS(3041), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5096), 1, - aux_sym_preproc_if_token2, - [69373] = 2, + [62155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 1, + ACTIONS(3151), 1, anon_sym_RPAREN, - [69380] = 2, + [62162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, - anon_sym_COLON, - [69387] = 2, + ACTIONS(4760), 1, + sym_identifier, + [62169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, - aux_sym_preproc_if_token2, - [69394] = 2, + ACTIONS(4762), 1, + anon_sym_RBRACK, + [62176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 1, - sym_identifier, - [69401] = 2, + ACTIONS(4764), 1, + anon_sym_SEMI, + [62183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - [69408] = 2, + ACTIONS(4766), 1, + anon_sym_RPAREN, + [62190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, + ACTIONS(4768), 1, aux_sym_preproc_if_token2, - [69415] = 2, + [62197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, - sym_identifier, - [69422] = 2, + ACTIONS(3149), 1, + anon_sym_RPAREN, + [62204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, + ACTIONS(4770), 1, sym_identifier, - [69429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5114), 1, - anon_sym_while, - [69436] = 2, + [62211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - aux_sym_preproc_if_token2, - [69443] = 2, + ACTIONS(4772), 1, + sym_identifier, + [62218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, + ACTIONS(4774), 1, anon_sym_RPAREN, - [69450] = 2, + [62225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - sym_identifier, - [69457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, - sym_identifier, - [69464] = 2, + ACTIONS(4776), 1, + anon_sym_LPAREN2, + [62232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, + ACTIONS(4778), 1, anon_sym_SEMI, - [69471] = 2, + [62239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(3145), 1, anon_sym_SEMI, - [69478] = 2, + [62246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, - aux_sym_preproc_if_token2, - [69485] = 2, + ACTIONS(4780), 1, + anon_sym_STAR, + [62253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 1, - anon_sym_RPAREN, - [69492] = 2, + ACTIONS(4782), 1, + anon_sym_SEMI, + [62260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, - aux_sym_preproc_if_token2, - [69499] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(5134), 1, - aux_sym_preproc_include_token2, - [69506] = 2, + ACTIONS(4784), 1, + anon_sym_COLON, + [62267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, - aux_sym_preproc_if_token2, - [69513] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(5138), 1, - aux_sym_preproc_include_token2, - [69520] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3671), 1, - aux_sym_preproc_include_token2, - [69527] = 2, + ACTIONS(4786), 1, + anon_sym_LPAREN2, + [62274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - anon_sym_RPAREN, - [69534] = 2, + ACTIONS(3141), 1, + anon_sym_SEMI, + [62281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, - anon_sym_LPAREN2, - [69541] = 2, + ACTIONS(4788), 1, + anon_sym_SEMI, + [62288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, + ACTIONS(4790), 1, sym_identifier, - [69548] = 2, + [62295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, - anon_sym_RPAREN, - [69555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, - anon_sym_STAR, - [69562] = 2, + ACTIONS(4792), 1, + aux_sym_preproc_if_token2, + [62302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 1, - sym_identifier, - [69569] = 2, + ACTIONS(4794), 1, + anon_sym_COLON, + [62309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, - sym_identifier, - [69576] = 2, + ACTIONS(4796), 1, + anon_sym_RPAREN, + [62316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, - sym_identifier, - [69583] = 2, + ACTIONS(3135), 1, + anon_sym_SEMI, + [62323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 1, + ACTIONS(4798), 1, sym_identifier, - [69590] = 2, + [62330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 1, + ACTIONS(4800), 1, aux_sym_preproc_if_token2, - [69597] = 2, - ACTIONS(3589), 1, + [62337] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, - aux_sym_preproc_include_token2, - [69604] = 2, + ACTIONS(3143), 1, + anon_sym_SEMI, + [62344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 1, - aux_sym_preproc_if_token2, - [69611] = 2, + ACTIONS(4802), 1, + sym_identifier, + [62351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LPAREN2, - [69618] = 2, + ACTIONS(4804), 1, + anon_sym_STAR, + [62358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - aux_sym_preproc_if_token2, - [69625] = 2, + ACTIONS(4806), 1, + sym_identifier, + [62365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, - anon_sym_RBRACE, - [69632] = 2, + ACTIONS(3155), 1, + anon_sym_RPAREN, + [62372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - anon_sym_LPAREN2, - [69639] = 2, + ACTIONS(4808), 1, + anon_sym_RPAREN, + [62379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 1, - aux_sym_preproc_if_token2, - [69646] = 2, + ACTIONS(4810), 1, + anon_sym_RPAREN, + [62386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, + ACTIONS(3167), 1, anon_sym_RPAREN, - [69653] = 2, + [62393] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4812), 1, + anon_sym_while, + [62400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, + ACTIONS(3133), 1, anon_sym_SEMI, - [69660] = 2, + [62407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 1, + ACTIONS(4814), 1, anon_sym_RPAREN, - [69667] = 2, + [62414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, - anon_sym_SEMI, - [69674] = 2, + ACTIONS(3097), 1, + anon_sym_COLON, + [62421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, - aux_sym_preproc_if_token2, - [69681] = 2, + ACTIONS(4816), 1, + anon_sym_RBRACE, + [62428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - anon_sym_SEMI, - [69688] = 2, + ACTIONS(4818), 1, + anon_sym_RPAREN, + [62435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - anon_sym_while, - [69695] = 2, + ACTIONS(4820), 1, + aux_sym_preproc_if_token2, + [62442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 1, - aux_sym_preproc_if_token2, - [69702] = 2, + ACTIONS(4822), 1, + anon_sym_SEMI, + [62449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, - anon_sym_RBRACE, - [69709] = 2, + ACTIONS(4824), 1, + anon_sym_COMMA, + [62456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 1, - sym_identifier, - [69716] = 2, + ACTIONS(4826), 1, + anon_sym_SEMI, + [62463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, + ACTIONS(4828), 1, aux_sym_preproc_if_token2, - [69723] = 2, + [62470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4191), 1, - anon_sym_COMMA, - [69730] = 2, + ACTIONS(4830), 1, + aux_sym_preproc_if_token2, + [62477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3420), 1, + ACTIONS(3137), 1, anon_sym_SEMI, - [69737] = 2, + [62484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, - anon_sym_RBRACE, - [69744] = 2, + ACTIONS(4832), 1, + aux_sym_preproc_if_token2, + [62491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 1, + ACTIONS(4834), 1, anon_sym_SEMI, - [69751] = 2, + [62498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, - anon_sym_SEMI, - [69758] = 2, + ACTIONS(4836), 1, + sym_identifier, + [62505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, + ACTIONS(4838), 1, sym_identifier, - [69765] = 2, + [62512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 1, - anon_sym_SEMI, - [69772] = 2, + ACTIONS(4840), 1, + aux_sym_preproc_if_token2, + [62519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - sym_identifier, - [69779] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4675), 1, - aux_sym_preproc_include_token2, - [69786] = 2, + ACTIONS(4842), 1, + anon_sym_RBRACE, + [62526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, + ACTIONS(4844), 1, aux_sym_preproc_if_token2, - [69793] = 2, + [62533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(4846), 1, aux_sym_preproc_if_token2, - [69800] = 2, + [62540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - anon_sym_COMMA, - [69807] = 2, + ACTIONS(4848), 1, + aux_sym_preproc_if_token2, + [62547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, + ACTIONS(4850), 1, aux_sym_preproc_if_token2, - [69814] = 2, + [62554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3410), 1, + ACTIONS(4852), 1, anon_sym_RPAREN, - [69821] = 2, + [62561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - anon_sym_COMMA, - [69828] = 2, + ACTIONS(3179), 1, + anon_sym_RPAREN, + [62568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, - anon_sym_RPAREN, - [69835] = 2, + ACTIONS(4854), 1, + anon_sym_RBRACE, + [62575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, - anon_sym_RPAREN, - [69842] = 2, + ACTIONS(3181), 1, + anon_sym_COLON, + [62582] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4856), 1, + aux_sym_preproc_include_token2, + [62589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5212), 1, - anon_sym_RBRACK, - [69849] = 2, + ACTIONS(4858), 1, + anon_sym_RPAREN, + [62596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5214), 1, + ACTIONS(4860), 1, sym_identifier, - [69856] = 2, + [62603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(4862), 1, sym_identifier, - [69863] = 2, + [62610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 1, - anon_sym_LPAREN2, - [69870] = 2, + ACTIONS(3183), 1, + anon_sym_RPAREN, + [62617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5220), 1, - sym_primitive_type, - [69877] = 2, - ACTIONS(3589), 1, + ACTIONS(4864), 1, + anon_sym_RBRACK, + [62624] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, - aux_sym_preproc_include_token2, - [69884] = 2, + ACTIONS(4866), 1, + aux_sym_preproc_if_token2, + [62631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, + ACTIONS(4868), 1, anon_sym_RPAREN, - [69891] = 2, + [62638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5224), 1, - anon_sym_RPAREN, - [69898] = 2, + ACTIONS(4870), 1, + aux_sym_preproc_if_token2, + [62645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 1, + ACTIONS(4872), 1, + aux_sym_preproc_if_token2, + [62652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4874), 1, anon_sym_SEMI, - [69905] = 2, + [62659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 1, - aux_sym_preproc_if_token2, - [69912] = 2, + ACTIONS(4876), 1, + sym_identifier, + [62666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, - anon_sym_RPAREN, - [69919] = 2, + ACTIONS(4878), 1, + aux_sym_preproc_if_token2, + [62673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(4880), 1, anon_sym_SEMI, - [69926] = 2, + [62680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(3191), 1, anon_sym_RPAREN, - [69933] = 2, + [62687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, - [69940] = 2, - ACTIONS(3), 1, + [62694] = 2, + ACTIONS(3037), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_COLON, - [69947] = 2, - ACTIONS(3589), 1, + [62701] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(4884), 1, aux_sym_preproc_include_token2, - [69954] = 2, + [62708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3406), 1, - anon_sym_RPAREN, - [69961] = 2, + ACTIONS(4886), 1, + aux_sym_preproc_if_token2, + [62715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5240), 1, - sym_identifier, - [69968] = 2, + ACTIONS(4888), 1, + anon_sym_RBRACE, + [62722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_RBRACE, - [69975] = 2, + ACTIONS(4890), 1, + aux_sym_preproc_if_token2, + [62729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5244), 1, - anon_sym_LPAREN2, - [69982] = 2, + ACTIONS(4892), 1, + aux_sym_preproc_if_token2, + [62736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 1, - anon_sym_SEMI, - [69989] = 2, + ACTIONS(4894), 1, + sym_identifier, + [62743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5248), 1, - anon_sym_RBRACE, - [69996] = 2, + ACTIONS(4896), 1, + aux_sym_preproc_if_token2, + [62750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 1, + anon_sym_RPAREN, + [62757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 1, + ACTIONS(4900), 1, aux_sym_preproc_if_token2, - [70003] = 2, + [62764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_while, - [70010] = 2, - ACTIONS(3589), 1, + ACTIONS(4902), 1, + aux_sym_preproc_if_token2, + [62771] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - aux_sym_preproc_include_token2, - [70017] = 2, + ACTIONS(4904), 1, + sym_identifier, + [62778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, + ACTIONS(4906), 1, aux_sym_preproc_if_token2, - [70024] = 2, + [62785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 1, + ACTIONS(4908), 1, aux_sym_preproc_if_token2, - [70031] = 2, - ACTIONS(2408), 1, - aux_sym_preproc_include_token2, - ACTIONS(3589), 1, + [62792] = 2, + ACTIONS(3), 1, sym_comment, - [70038] = 2, + ACTIONS(4910), 1, + aux_sym_preproc_if_token2, + [62799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, + ACTIONS(4537), 1, anon_sym_RBRACE, - [70045] = 2, + [62806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5262), 1, - aux_sym_preproc_if_token2, - [70052] = 2, + ACTIONS(4912), 1, + sym_identifier, + [62813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5264), 1, - aux_sym_preproc_if_token2, - [70059] = 2, + ACTIONS(4914), 1, + sym_identifier, + [62820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5266), 1, - anon_sym_while, - [70066] = 2, - ACTIONS(3589), 1, + ACTIONS(4916), 1, + anon_sym_LPAREN2, + [62827] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 1, - aux_sym_preproc_include_token2, - [70073] = 2, + ACTIONS(4918), 1, + sym_identifier, + [62834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3412), 1, + ACTIONS(4535), 1, + anon_sym_COMMA, + [62841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 1, anon_sym_SEMI, - [70080] = 2, + [62848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, - anon_sym_RPAREN, - [70087] = 2, + ACTIONS(4922), 1, + sym_identifier, + [62855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3418), 1, - anon_sym_SEMI, - [70094] = 2, + ACTIONS(4924), 1, + sym_identifier, + [62862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, - anon_sym_RPAREN, - [70101] = 2, + ACTIONS(4926), 1, + aux_sym_preproc_if_token2, + [62869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_RBRACK, - [70108] = 2, + ACTIONS(3201), 1, + anon_sym_RPAREN, + [62876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 1, + ACTIONS(4928), 1, anon_sym_SEMI, - [70115] = 2, + [62883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_while, - [70122] = 2, + ACTIONS(4930), 1, + sym_primitive_type, + [62890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(4932), 1, anon_sym_RPAREN, - [70129] = 2, + [62897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5278), 1, - anon_sym_SEMI, - [70136] = 2, - ACTIONS(3589), 1, + ACTIONS(4934), 1, + anon_sym_RPAREN, + [62904] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_preproc_include_token2, - [70143] = 2, + ACTIONS(4936), 1, + aux_sym_preproc_if_token2, + [62911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 1, - anon_sym_SEMI, - [70150] = 2, - ACTIONS(2412), 1, + ACTIONS(3602), 1, + anon_sym_RBRACE, + [62918] = 2, + ACTIONS(2153), 1, aux_sym_preproc_include_token2, - ACTIONS(3589), 1, + ACTIONS(3317), 1, sym_comment, - [70157] = 2, + [62925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5282), 1, - anon_sym_RBRACE, - [70164] = 2, + ACTIONS(4938), 1, + aux_sym_preproc_if_token2, + [62932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - anon_sym_LPAREN2, - [70171] = 2, + ACTIONS(4940), 1, + aux_sym_preproc_if_token2, + [62939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5286), 1, + ACTIONS(4942), 1, aux_sym_preproc_if_token2, - [70178] = 2, + [62946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5288), 1, - aux_sym_preproc_if_token2, - [70185] = 2, + ACTIONS(4944), 1, + anon_sym_COLON, + [62953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_RPAREN, - [70192] = 2, + ACTIONS(4946), 1, + sym_identifier, + [62960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - aux_sym_preproc_if_token2, - [70199] = 2, + ACTIONS(4948), 1, + anon_sym_SEMI, + [62967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5294), 1, - aux_sym_preproc_if_token2, - [70206] = 2, + ACTIONS(4950), 1, + anon_sym_RPAREN, + [62974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5296), 1, + ACTIONS(4952), 1, aux_sym_preproc_if_token2, - [70213] = 2, + [62981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 1, - aux_sym_preproc_if_token2, - [70220] = 2, + ACTIONS(4954), 1, + sym_identifier, + [62988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - anon_sym_SEMI, - [70227] = 2, + ACTIONS(4956), 1, + sym_identifier, + [62995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_COLON, - [70234] = 2, + ACTIONS(4958), 1, + anon_sym_SEMI, + [63002] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4435), 1, + aux_sym_preproc_include_token2, + [63009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - aux_sym_preproc_if_token2, - [70241] = 2, + ACTIONS(4960), 1, + sym_identifier, + [63016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5306), 1, - aux_sym_preproc_if_token2, - [70248] = 2, + ACTIONS(4962), 1, + anon_sym_LPAREN2, + [63023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(4964), 1, ts_builtin_sym_end, - [70255] = 2, + [63030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_RPAREN, - [70262] = 2, + ACTIONS(4966), 1, + anon_sym_LPAREN2, + [63037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 1, + anon_sym_LPAREN2, + [63044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5312), 1, + ACTIONS(4970), 1, aux_sym_preproc_if_token2, - [70269] = 2, + [63051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_RPAREN, - [70276] = 2, + ACTIONS(4972), 1, + sym_primitive_type, + [63058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 1, - anon_sym_LPAREN2, - [70283] = 2, + ACTIONS(4974), 1, + aux_sym_preproc_if_token2, + [63065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_LPAREN2, - [70290] = 2, + ACTIONS(4976), 1, + aux_sym_preproc_if_token2, + [63072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5320), 1, - anon_sym_LPAREN2, - [70297] = 2, + ACTIONS(4978), 1, + anon_sym_RPAREN, + [63079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - sym_identifier, - [70304] = 2, + ACTIONS(4980), 1, + anon_sym_LPAREN2, + [63086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_SEMI, - [70311] = 2, + ACTIONS(4982), 1, + anon_sym_LPAREN2, + [63093] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4984), 1, + aux_sym_preproc_include_token2, + [63100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5326), 1, - anon_sym_SEMI, - [70318] = 2, + ACTIONS(4986), 1, + anon_sym_while, + [63107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5328), 1, + ACTIONS(4988), 1, anon_sym_LPAREN2, - [70325] = 2, + [63114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5330), 1, - aux_sym_preproc_if_token2, - [70332] = 2, + ACTIONS(4990), 1, + sym_identifier, + [63121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, - anon_sym_COLON, - [70339] = 2, + ACTIONS(4992), 1, + anon_sym_SEMI, + [63128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5334), 1, + ACTIONS(4994), 1, anon_sym_SEMI, - [70346] = 2, + [63135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(4996), 1, aux_sym_preproc_if_token2, - [70353] = 2, + [63142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5338), 1, + ACTIONS(4998), 1, sym_identifier, - [70360] = 2, + [63149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 1, - aux_sym_preproc_if_token2, - [70367] = 2, - ACTIONS(3589), 1, + ACTIONS(3173), 1, + anon_sym_COLON, + [63156] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, - aux_sym_preproc_include_token2, - [70374] = 2, + ACTIONS(5000), 1, + anon_sym_RPAREN, + [63163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5344), 1, - aux_sym_preproc_if_token2, - [70381] = 2, + ACTIONS(5002), 1, + anon_sym_LPAREN2, + [63170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5346), 1, + ACTIONS(5004), 1, anon_sym_LPAREN2, - [70388] = 2, + [63177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, + ACTIONS(5006), 1, sym_identifier, - [70395] = 2, + [63184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5350), 1, - aux_sym_preproc_if_token2, - [70402] = 2, + ACTIONS(5008), 1, + anon_sym_COLON, + [63191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 1, - anon_sym_LPAREN2, - [70409] = 2, - ACTIONS(3589), 1, + ACTIONS(5010), 1, + anon_sym_while, + [63198] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5354), 1, - aux_sym_preproc_include_token2, - [70416] = 2, + ACTIONS(3185), 1, + anon_sym_COLON, + [63205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5356), 1, - anon_sym_LPAREN2, - [70423] = 2, + ACTIONS(5012), 1, + sym_identifier, + [63212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 1, + ACTIONS(5014), 1, anon_sym_RPAREN, - [70430] = 2, + [63219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5360), 1, + ACTIONS(5016), 1, anon_sym_RPAREN, - [70437] = 2, - ACTIONS(3), 1, + [63226] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5362), 1, - anon_sym_COLON, - [70444] = 2, + ACTIONS(5018), 1, + aux_sym_preproc_include_token2, + [63233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - aux_sym_preproc_if_token2, - [70451] = 2, + ACTIONS(3147), 1, + anon_sym_COLON, + [63240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 1, - aux_sym_preproc_if_token2, - [70458] = 2, + ACTIONS(3189), 1, + anon_sym_SEMI, + [63247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5368), 1, - aux_sym_preproc_if_token2, - [70465] = 2, + ACTIONS(5020), 1, + anon_sym_while, + [63254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5370), 1, + ACTIONS(5022), 1, anon_sym_LPAREN2, - [70472] = 2, + [63261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5372), 1, - anon_sym_SEMI, - [70479] = 2, + ACTIONS(5024), 1, + anon_sym_LPAREN2, + [63268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_SEMI, - [70486] = 2, + ACTIONS(5026), 1, + anon_sym_RPAREN, + [63275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5374), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - [70493] = 2, + [63282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5376), 1, - anon_sym_RPAREN, - [70500] = 2, + ACTIONS(5030), 1, + anon_sym_LPAREN2, + [63289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, + ACTIONS(5032), 1, sym_identifier, - [70507] = 2, + [63296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - anon_sym_SEMI, - [70514] = 2, + ACTIONS(5034), 1, + sym_identifier, + [63303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 1, + ACTIONS(5036), 1, anon_sym_LPAREN2, - [70521] = 2, - ACTIONS(3), 1, + [63310] = 2, + ACTIONS(2149), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(5384), 1, - anon_sym_RPAREN, - [70528] = 2, + [63317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(5038), 1, sym_identifier, - [70535] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5388), 1, - anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(557)] = 0, - [SMALL_STATE(558)] = 114, - [SMALL_STATE(559)] = 228, - [SMALL_STATE(560)] = 338, - [SMALL_STATE(561)] = 449, - [SMALL_STATE(562)] = 557, - [SMALL_STATE(563)] = 665, - [SMALL_STATE(564)] = 771, - [SMALL_STATE(565)] = 879, - [SMALL_STATE(566)] = 987, - [SMALL_STATE(567)] = 1095, - [SMALL_STATE(568)] = 1203, - [SMALL_STATE(569)] = 1311, - [SMALL_STATE(570)] = 1419, - [SMALL_STATE(571)] = 1527, - [SMALL_STATE(572)] = 1635, - [SMALL_STATE(573)] = 1743, - [SMALL_STATE(574)] = 1851, - [SMALL_STATE(575)] = 1959, - [SMALL_STATE(576)] = 2067, - [SMALL_STATE(577)] = 2175, - [SMALL_STATE(578)] = 2283, - [SMALL_STATE(579)] = 2391, - [SMALL_STATE(580)] = 2499, - [SMALL_STATE(581)] = 2607, - [SMALL_STATE(582)] = 2713, - [SMALL_STATE(583)] = 2821, - [SMALL_STATE(584)] = 2929, - [SMALL_STATE(585)] = 3037, - [SMALL_STATE(586)] = 3145, - [SMALL_STATE(587)] = 3251, - [SMALL_STATE(588)] = 3359, - [SMALL_STATE(589)] = 3467, - [SMALL_STATE(590)] = 3575, - [SMALL_STATE(591)] = 3683, - [SMALL_STATE(592)] = 3789, - [SMALL_STATE(593)] = 3894, - [SMALL_STATE(594)] = 3997, - [SMALL_STATE(595)] = 4100, - [SMALL_STATE(596)] = 4203, - [SMALL_STATE(597)] = 4308, - [SMALL_STATE(598)] = 4413, - [SMALL_STATE(599)] = 4516, - [SMALL_STATE(600)] = 4619, - [SMALL_STATE(601)] = 4724, - [SMALL_STATE(602)] = 4827, - [SMALL_STATE(603)] = 4940, - [SMALL_STATE(604)] = 5043, - [SMALL_STATE(605)] = 5148, - [SMALL_STATE(606)] = 5253, - [SMALL_STATE(607)] = 5358, - [SMALL_STATE(608)] = 5461, - [SMALL_STATE(609)] = 5566, - [SMALL_STATE(610)] = 5669, - [SMALL_STATE(611)] = 5774, - [SMALL_STATE(612)] = 5879, - [SMALL_STATE(613)] = 5982, - [SMALL_STATE(614)] = 6087, - [SMALL_STATE(615)] = 6187, - [SMALL_STATE(616)] = 6289, - [SMALL_STATE(617)] = 6391, - [SMALL_STATE(618)] = 6491, - [SMALL_STATE(619)] = 6591, - [SMALL_STATE(620)] = 6691, - [SMALL_STATE(621)] = 6791, - [SMALL_STATE(622)] = 6891, - [SMALL_STATE(623)] = 6991, - [SMALL_STATE(624)] = 7091, - [SMALL_STATE(625)] = 7191, - [SMALL_STATE(626)] = 7291, - [SMALL_STATE(627)] = 7393, - [SMALL_STATE(628)] = 7493, - [SMALL_STATE(629)] = 7593, - [SMALL_STATE(630)] = 7695, - [SMALL_STATE(631)] = 7797, - [SMALL_STATE(632)] = 7899, - [SMALL_STATE(633)] = 7999, - [SMALL_STATE(634)] = 8101, - [SMALL_STATE(635)] = 8201, - [SMALL_STATE(636)] = 8303, - [SMALL_STATE(637)] = 8405, - [SMALL_STATE(638)] = 8507, - [SMALL_STATE(639)] = 8609, - [SMALL_STATE(640)] = 8711, - [SMALL_STATE(641)] = 8813, - [SMALL_STATE(642)] = 8915, - [SMALL_STATE(643)] = 9015, - [SMALL_STATE(644)] = 9103, - [SMALL_STATE(645)] = 9203, - [SMALL_STATE(646)] = 9303, - [SMALL_STATE(647)] = 9403, - [SMALL_STATE(648)] = 9503, - [SMALL_STATE(649)] = 9603, - [SMALL_STATE(650)] = 9703, - [SMALL_STATE(651)] = 9803, - [SMALL_STATE(652)] = 9903, - [SMALL_STATE(653)] = 10003, - [SMALL_STATE(654)] = 10103, - [SMALL_STATE(655)] = 10203, - [SMALL_STATE(656)] = 10303, - [SMALL_STATE(657)] = 10405, - [SMALL_STATE(658)] = 10507, - [SMALL_STATE(659)] = 10609, - [SMALL_STATE(660)] = 10709, - [SMALL_STATE(661)] = 10811, - [SMALL_STATE(662)] = 10911, - [SMALL_STATE(663)] = 11011, - [SMALL_STATE(664)] = 11113, - [SMALL_STATE(665)] = 11213, - [SMALL_STATE(666)] = 11315, - [SMALL_STATE(667)] = 11415, - [SMALL_STATE(668)] = 11515, - [SMALL_STATE(669)] = 11615, - [SMALL_STATE(670)] = 11715, - [SMALL_STATE(671)] = 11815, - [SMALL_STATE(672)] = 11917, - [SMALL_STATE(673)] = 12019, - [SMALL_STATE(674)] = 12119, - [SMALL_STATE(675)] = 12219, - [SMALL_STATE(676)] = 12319, - [SMALL_STATE(677)] = 12421, - [SMALL_STATE(678)] = 12523, - [SMALL_STATE(679)] = 12625, - [SMALL_STATE(680)] = 12727, - [SMALL_STATE(681)] = 12829, - [SMALL_STATE(682)] = 12931, - [SMALL_STATE(683)] = 13033, - [SMALL_STATE(684)] = 13135, - [SMALL_STATE(685)] = 13235, - [SMALL_STATE(686)] = 13337, - [SMALL_STATE(687)] = 13439, - [SMALL_STATE(688)] = 13541, - [SMALL_STATE(689)] = 13641, - [SMALL_STATE(690)] = 13743, - [SMALL_STATE(691)] = 13845, - [SMALL_STATE(692)] = 13947, - [SMALL_STATE(693)] = 14049, - [SMALL_STATE(694)] = 14151, - [SMALL_STATE(695)] = 14253, - [SMALL_STATE(696)] = 14355, - [SMALL_STATE(697)] = 14457, - [SMALL_STATE(698)] = 14559, - [SMALL_STATE(699)] = 14661, - [SMALL_STATE(700)] = 14763, - [SMALL_STATE(701)] = 14865, - [SMALL_STATE(702)] = 14967, - [SMALL_STATE(703)] = 15069, - [SMALL_STATE(704)] = 15171, - [SMALL_STATE(705)] = 15273, - [SMALL_STATE(706)] = 15375, - [SMALL_STATE(707)] = 15477, - [SMALL_STATE(708)] = 15579, - [SMALL_STATE(709)] = 15681, - [SMALL_STATE(710)] = 15783, - [SMALL_STATE(711)] = 15885, - [SMALL_STATE(712)] = 15987, - [SMALL_STATE(713)] = 16087, - [SMALL_STATE(714)] = 16189, - [SMALL_STATE(715)] = 16289, - [SMALL_STATE(716)] = 16391, - [SMALL_STATE(717)] = 16491, - [SMALL_STATE(718)] = 16593, - [SMALL_STATE(719)] = 16695, - [SMALL_STATE(720)] = 16797, - [SMALL_STATE(721)] = 16897, - [SMALL_STATE(722)] = 16999, - [SMALL_STATE(723)] = 17099, - [SMALL_STATE(724)] = 17199, - [SMALL_STATE(725)] = 17301, - [SMALL_STATE(726)] = 17403, - [SMALL_STATE(727)] = 17503, - [SMALL_STATE(728)] = 17603, - [SMALL_STATE(729)] = 17705, - [SMALL_STATE(730)] = 17807, - [SMALL_STATE(731)] = 17909, - [SMALL_STATE(732)] = 18011, - [SMALL_STATE(733)] = 18113, - [SMALL_STATE(734)] = 18215, - [SMALL_STATE(735)] = 18317, - [SMALL_STATE(736)] = 18419, - [SMALL_STATE(737)] = 18521, - [SMALL_STATE(738)] = 18623, - [SMALL_STATE(739)] = 18725, - [SMALL_STATE(740)] = 18827, - [SMALL_STATE(741)] = 18927, - [SMALL_STATE(742)] = 19027, - [SMALL_STATE(743)] = 19129, - [SMALL_STATE(744)] = 19231, - [SMALL_STATE(745)] = 19333, - [SMALL_STATE(746)] = 19433, - [SMALL_STATE(747)] = 19535, - [SMALL_STATE(748)] = 19635, - [SMALL_STATE(749)] = 19737, - [SMALL_STATE(750)] = 19839, - [SMALL_STATE(751)] = 19939, - [SMALL_STATE(752)] = 20039, - [SMALL_STATE(753)] = 20141, - [SMALL_STATE(754)] = 20241, - [SMALL_STATE(755)] = 20343, - [SMALL_STATE(756)] = 20445, - [SMALL_STATE(757)] = 20547, - [SMALL_STATE(758)] = 20649, - [SMALL_STATE(759)] = 20749, - [SMALL_STATE(760)] = 20849, - [SMALL_STATE(761)] = 20951, - [SMALL_STATE(762)] = 21051, - [SMALL_STATE(763)] = 21151, - [SMALL_STATE(764)] = 21251, - [SMALL_STATE(765)] = 21351, - [SMALL_STATE(766)] = 21451, - [SMALL_STATE(767)] = 21551, - [SMALL_STATE(768)] = 21652, - [SMALL_STATE(769)] = 21753, - [SMALL_STATE(770)] = 21824, - [SMALL_STATE(771)] = 21925, - [SMALL_STATE(772)] = 22026, - [SMALL_STATE(773)] = 22127, - [SMALL_STATE(774)] = 22198, - [SMALL_STATE(775)] = 22269, - [SMALL_STATE(776)] = 22337, - [SMALL_STATE(777)] = 22405, - [SMALL_STATE(778)] = 22468, - [SMALL_STATE(779)] = 22531, - [SMALL_STATE(780)] = 22593, - [SMALL_STATE(781)] = 22655, - [SMALL_STATE(782)] = 22717, - [SMALL_STATE(783)] = 22779, - [SMALL_STATE(784)] = 22841, - [SMALL_STATE(785)] = 22903, - [SMALL_STATE(786)] = 22965, - [SMALL_STATE(787)] = 23027, - [SMALL_STATE(788)] = 23089, - [SMALL_STATE(789)] = 23151, - [SMALL_STATE(790)] = 23210, - [SMALL_STATE(791)] = 23269, - [SMALL_STATE(792)] = 23328, - [SMALL_STATE(793)] = 23387, - [SMALL_STATE(794)] = 23479, - [SMALL_STATE(795)] = 23571, - [SMALL_STATE(796)] = 23629, - [SMALL_STATE(797)] = 23687, - [SMALL_STATE(798)] = 23781, - [SMALL_STATE(799)] = 23839, - [SMALL_STATE(800)] = 23897, - [SMALL_STATE(801)] = 23955, - [SMALL_STATE(802)] = 24047, - [SMALL_STATE(803)] = 24105, - [SMALL_STATE(804)] = 24197, - [SMALL_STATE(805)] = 24289, - [SMALL_STATE(806)] = 24381, - [SMALL_STATE(807)] = 24439, - [SMALL_STATE(808)] = 24531, - [SMALL_STATE(809)] = 24589, - [SMALL_STATE(810)] = 24647, - [SMALL_STATE(811)] = 24705, - [SMALL_STATE(812)] = 24763, - [SMALL_STATE(813)] = 24855, - [SMALL_STATE(814)] = 24947, - [SMALL_STATE(815)] = 25039, - [SMALL_STATE(816)] = 25097, - [SMALL_STATE(817)] = 25189, - [SMALL_STATE(818)] = 25281, - [SMALL_STATE(819)] = 25373, - [SMALL_STATE(820)] = 25431, - [SMALL_STATE(821)] = 25489, - [SMALL_STATE(822)] = 25581, - [SMALL_STATE(823)] = 25673, - [SMALL_STATE(824)] = 25765, - [SMALL_STATE(825)] = 25823, - [SMALL_STATE(826)] = 25915, - [SMALL_STATE(827)] = 26007, - [SMALL_STATE(828)] = 26099, - [SMALL_STATE(829)] = 26191, - [SMALL_STATE(830)] = 26283, - [SMALL_STATE(831)] = 26341, - [SMALL_STATE(832)] = 26406, - [SMALL_STATE(833)] = 26473, - [SMALL_STATE(834)] = 26530, - [SMALL_STATE(835)] = 26619, - [SMALL_STATE(836)] = 26686, - [SMALL_STATE(837)] = 26743, - [SMALL_STATE(838)] = 26810, - [SMALL_STATE(839)] = 26875, - [SMALL_STATE(840)] = 26932, - [SMALL_STATE(841)] = 27023, - [SMALL_STATE(842)] = 27080, - [SMALL_STATE(843)] = 27147, - [SMALL_STATE(844)] = 27214, - [SMALL_STATE(845)] = 27303, - [SMALL_STATE(846)] = 27365, - [SMALL_STATE(847)] = 27427, - [SMALL_STATE(848)] = 27489, - [SMALL_STATE(849)] = 27553, - [SMALL_STATE(850)] = 27612, - [SMALL_STATE(851)] = 27671, - [SMALL_STATE(852)] = 27734, - [SMALL_STATE(853)] = 27793, - [SMALL_STATE(854)] = 27875, - [SMALL_STATE(855)] = 27957, - [SMALL_STATE(856)] = 28039, - [SMALL_STATE(857)] = 28121, - [SMALL_STATE(858)] = 28175, - [SMALL_STATE(859)] = 28229, - [SMALL_STATE(860)] = 28311, - [SMALL_STATE(861)] = 28393, - [SMALL_STATE(862)] = 28475, - [SMALL_STATE(863)] = 28557, - [SMALL_STATE(864)] = 28639, - [SMALL_STATE(865)] = 28721, - [SMALL_STATE(866)] = 28784, - [SMALL_STATE(867)] = 28847, - [SMALL_STATE(868)] = 28926, - [SMALL_STATE(869)] = 28989, - [SMALL_STATE(870)] = 29052, - [SMALL_STATE(871)] = 29115, - [SMALL_STATE(872)] = 29178, - [SMALL_STATE(873)] = 29243, - [SMALL_STATE(874)] = 29296, - [SMALL_STATE(875)] = 29359, - [SMALL_STATE(876)] = 29427, - [SMALL_STATE(877)] = 29493, - [SMALL_STATE(878)] = 29565, - [SMALL_STATE(879)] = 29639, - [SMALL_STATE(880)] = 29715, - [SMALL_STATE(881)] = 29775, - [SMALL_STATE(882)] = 29853, - [SMALL_STATE(883)] = 29939, - [SMALL_STATE(884)] = 30021, - [SMALL_STATE(885)] = 30107, - [SMALL_STATE(886)] = 30187, - [SMALL_STATE(887)] = 30251, - [SMALL_STATE(888)] = 30337, - [SMALL_STATE(889)] = 30422, - [SMALL_STATE(890)] = 30485, - [SMALL_STATE(891)] = 30536, - [SMALL_STATE(892)] = 30601, - [SMALL_STATE(893)] = 30686, - [SMALL_STATE(894)] = 30753, - [SMALL_STATE(895)] = 30838, - [SMALL_STATE(896)] = 30909, - [SMALL_STATE(897)] = 30982, - [SMALL_STATE(898)] = 31057, - [SMALL_STATE(899)] = 31134, - [SMALL_STATE(900)] = 31185, - [SMALL_STATE(901)] = 31264, - [SMALL_STATE(902)] = 31319, - [SMALL_STATE(903)] = 31370, - [SMALL_STATE(904)] = 31451, - [SMALL_STATE(905)] = 31502, - [SMALL_STATE(906)] = 31553, - [SMALL_STATE(907)] = 31613, - [SMALL_STATE(908)] = 31675, - [SMALL_STATE(909)] = 31735, - [SMALL_STATE(910)] = 31801, - [SMALL_STATE(911)] = 31855, - [SMALL_STATE(912)] = 31925, - [SMALL_STATE(913)] = 31985, - [SMALL_STATE(914)] = 32049, - [SMALL_STATE(915)] = 32109, - [SMALL_STATE(916)] = 32167, - [SMALL_STATE(917)] = 32239, - [SMALL_STATE(918)] = 32313, - [SMALL_STATE(919)] = 32389, - [SMALL_STATE(920)] = 32473, - [SMALL_STATE(921)] = 32557, - [SMALL_STATE(922)] = 32617, - [SMALL_STATE(923)] = 32695, - [SMALL_STATE(924)] = 32779, - [SMALL_STATE(925)] = 32859, - [SMALL_STATE(926)] = 32908, - [SMALL_STATE(927)] = 32957, - [SMALL_STATE(928)] = 33006, - [SMALL_STATE(929)] = 33055, - [SMALL_STATE(930)] = 33104, - [SMALL_STATE(931)] = 33153, - [SMALL_STATE(932)] = 33202, - [SMALL_STATE(933)] = 33251, - [SMALL_STATE(934)] = 33300, - [SMALL_STATE(935)] = 33349, - [SMALL_STATE(936)] = 33398, - [SMALL_STATE(937)] = 33447, - [SMALL_STATE(938)] = 33496, - [SMALL_STATE(939)] = 33545, - [SMALL_STATE(940)] = 33594, - [SMALL_STATE(941)] = 33643, - [SMALL_STATE(942)] = 33692, - [SMALL_STATE(943)] = 33741, - [SMALL_STATE(944)] = 33790, - [SMALL_STATE(945)] = 33839, - [SMALL_STATE(946)] = 33888, - [SMALL_STATE(947)] = 33937, - [SMALL_STATE(948)] = 33986, - [SMALL_STATE(949)] = 34035, - [SMALL_STATE(950)] = 34084, - [SMALL_STATE(951)] = 34133, - [SMALL_STATE(952)] = 34182, - [SMALL_STATE(953)] = 34235, - [SMALL_STATE(954)] = 34284, - [SMALL_STATE(955)] = 34333, - [SMALL_STATE(956)] = 34382, - [SMALL_STATE(957)] = 34431, - [SMALL_STATE(958)] = 34480, - [SMALL_STATE(959)] = 34529, - [SMALL_STATE(960)] = 34578, - [SMALL_STATE(961)] = 34627, - [SMALL_STATE(962)] = 34676, - [SMALL_STATE(963)] = 34725, - [SMALL_STATE(964)] = 34774, - [SMALL_STATE(965)] = 34823, - [SMALL_STATE(966)] = 34872, - [SMALL_STATE(967)] = 34921, - [SMALL_STATE(968)] = 34970, - [SMALL_STATE(969)] = 35019, - [SMALL_STATE(970)] = 35068, - [SMALL_STATE(971)] = 35117, - [SMALL_STATE(972)] = 35172, - [SMALL_STATE(973)] = 35235, - [SMALL_STATE(974)] = 35318, - [SMALL_STATE(975)] = 35365, - [SMALL_STATE(976)] = 35420, - [SMALL_STATE(977)] = 35499, - [SMALL_STATE(978)] = 35546, - [SMALL_STATE(979)] = 35593, - [SMALL_STATE(980)] = 35640, - [SMALL_STATE(981)] = 35687, - [SMALL_STATE(982)] = 35734, - [SMALL_STATE(983)] = 35781, - [SMALL_STATE(984)] = 35842, - [SMALL_STATE(985)] = 35889, - [SMALL_STATE(986)] = 35948, - [SMALL_STATE(987)] = 36001, - [SMALL_STATE(988)] = 36080, - [SMALL_STATE(989)] = 36135, - [SMALL_STATE(990)] = 36212, - [SMALL_STATE(991)] = 36287, - [SMALL_STATE(992)] = 36360, - [SMALL_STATE(993)] = 36431, - [SMALL_STATE(994)] = 36500, - [SMALL_STATE(995)] = 36559, - [SMALL_STATE(996)] = 36624, - [SMALL_STATE(997)] = 36671, - [SMALL_STATE(998)] = 36754, - [SMALL_STATE(999)] = 36801, - [SMALL_STATE(1000)] = 36858, - [SMALL_STATE(1001)] = 36917, - [SMALL_STATE(1002)] = 37000, - [SMALL_STATE(1003)] = 37059, - [SMALL_STATE(1004)] = 37106, - [SMALL_STATE(1005)] = 37153, - [SMALL_STATE(1006)] = 37212, - [SMALL_STATE(1007)] = 37259, - [SMALL_STATE(1008)] = 37312, - [SMALL_STATE(1009)] = 37367, - [SMALL_STATE(1010)] = 37414, - [SMALL_STATE(1011)] = 37461, - [SMALL_STATE(1012)] = 37508, - [SMALL_STATE(1013)] = 37555, - [SMALL_STATE(1014)] = 37602, - [SMALL_STATE(1015)] = 37657, - [SMALL_STATE(1016)] = 37704, - [SMALL_STATE(1017)] = 37751, - [SMALL_STATE(1018)] = 37797, - [SMALL_STATE(1019)] = 37843, - [SMALL_STATE(1020)] = 37889, - [SMALL_STATE(1021)] = 37939, - [SMALL_STATE(1022)] = 37985, - [SMALL_STATE(1023)] = 38031, - [SMALL_STATE(1024)] = 38076, - [SMALL_STATE(1025)] = 38125, - [SMALL_STATE(1026)] = 38170, - [SMALL_STATE(1027)] = 38219, - [SMALL_STATE(1028)] = 38264, - [SMALL_STATE(1029)] = 38309, - [SMALL_STATE(1030)] = 38354, - [SMALL_STATE(1031)] = 38399, - [SMALL_STATE(1032)] = 38444, - [SMALL_STATE(1033)] = 38489, - [SMALL_STATE(1034)] = 38534, - [SMALL_STATE(1035)] = 38579, - [SMALL_STATE(1036)] = 38624, - [SMALL_STATE(1037)] = 38669, - [SMALL_STATE(1038)] = 38718, - [SMALL_STATE(1039)] = 38763, - [SMALL_STATE(1040)] = 38820, - [SMALL_STATE(1041)] = 38865, - [SMALL_STATE(1042)] = 38910, - [SMALL_STATE(1043)] = 38955, - [SMALL_STATE(1044)] = 39000, - [SMALL_STATE(1045)] = 39045, - [SMALL_STATE(1046)] = 39090, - [SMALL_STATE(1047)] = 39139, - [SMALL_STATE(1048)] = 39184, - [SMALL_STATE(1049)] = 39229, - [SMALL_STATE(1050)] = 39274, - [SMALL_STATE(1051)] = 39319, - [SMALL_STATE(1052)] = 39364, - [SMALL_STATE(1053)] = 39409, - [SMALL_STATE(1054)] = 39454, - [SMALL_STATE(1055)] = 39503, - [SMALL_STATE(1056)] = 39548, - [SMALL_STATE(1057)] = 39597, - [SMALL_STATE(1058)] = 39646, - [SMALL_STATE(1059)] = 39691, - [SMALL_STATE(1060)] = 39736, - [SMALL_STATE(1061)] = 39781, - [SMALL_STATE(1062)] = 39826, - [SMALL_STATE(1063)] = 39883, - [SMALL_STATE(1064)] = 39928, - [SMALL_STATE(1065)] = 39977, - [SMALL_STATE(1066)] = 40026, - [SMALL_STATE(1067)] = 40075, - [SMALL_STATE(1068)] = 40120, - [SMALL_STATE(1069)] = 40169, - [SMALL_STATE(1070)] = 40218, - [SMALL_STATE(1071)] = 40267, - [SMALL_STATE(1072)] = 40316, - [SMALL_STATE(1073)] = 40361, - [SMALL_STATE(1074)] = 40418, - [SMALL_STATE(1075)] = 40475, - [SMALL_STATE(1076)] = 40520, - [SMALL_STATE(1077)] = 40565, - [SMALL_STATE(1078)] = 40614, - [SMALL_STATE(1079)] = 40663, - [SMALL_STATE(1080)] = 40711, - [SMALL_STATE(1081)] = 40763, - [SMALL_STATE(1082)] = 40807, - [SMALL_STATE(1083)] = 40851, - [SMALL_STATE(1084)] = 40895, - [SMALL_STATE(1085)] = 40939, - [SMALL_STATE(1086)] = 40987, - [SMALL_STATE(1087)] = 41031, - [SMALL_STATE(1088)] = 41075, - [SMALL_STATE(1089)] = 41119, - [SMALL_STATE(1090)] = 41167, - [SMALL_STATE(1091)] = 41217, - [SMALL_STATE(1092)] = 41261, - [SMALL_STATE(1093)] = 41309, - [SMALL_STATE(1094)] = 41357, - [SMALL_STATE(1095)] = 41405, - [SMALL_STATE(1096)] = 41449, - [SMALL_STATE(1097)] = 41493, - [SMALL_STATE(1098)] = 41537, - [SMALL_STATE(1099)] = 41581, - [SMALL_STATE(1100)] = 41625, - [SMALL_STATE(1101)] = 41669, - [SMALL_STATE(1102)] = 41713, - [SMALL_STATE(1103)] = 41757, - [SMALL_STATE(1104)] = 41801, - [SMALL_STATE(1105)] = 41845, - [SMALL_STATE(1106)] = 41889, - [SMALL_STATE(1107)] = 41933, - [SMALL_STATE(1108)] = 41983, - [SMALL_STATE(1109)] = 42027, - [SMALL_STATE(1110)] = 42075, - [SMALL_STATE(1111)] = 42119, - [SMALL_STATE(1112)] = 42163, - [SMALL_STATE(1113)] = 42207, - [SMALL_STATE(1114)] = 42251, - [SMALL_STATE(1115)] = 42295, - [SMALL_STATE(1116)] = 42339, - [SMALL_STATE(1117)] = 42383, - [SMALL_STATE(1118)] = 42452, - [SMALL_STATE(1119)] = 42507, - [SMALL_STATE(1120)] = 42576, - [SMALL_STATE(1121)] = 42645, - [SMALL_STATE(1122)] = 42714, - [SMALL_STATE(1123)] = 42766, - [SMALL_STATE(1124)] = 42822, - [SMALL_STATE(1125)] = 42872, - [SMALL_STATE(1126)] = 42928, - [SMALL_STATE(1127)] = 42980, - [SMALL_STATE(1128)] = 43036, - [SMALL_STATE(1129)] = 43092, - [SMALL_STATE(1130)] = 43148, - [SMALL_STATE(1131)] = 43211, - [SMALL_STATE(1132)] = 43276, - [SMALL_STATE(1133)] = 43343, - [SMALL_STATE(1134)] = 43414, - [SMALL_STATE(1135)] = 43483, - [SMALL_STATE(1136)] = 43556, - [SMALL_STATE(1137)] = 43611, - [SMALL_STATE(1138)] = 43688, - [SMALL_STATE(1139)] = 43765, - [SMALL_STATE(1140)] = 43814, - [SMALL_STATE(1141)] = 43891, - [SMALL_STATE(1142)] = 43950, - [SMALL_STATE(1143)] = 44007, - [SMALL_STATE(1144)] = 44084, - [SMALL_STATE(1145)] = 44126, - [SMALL_STATE(1146)] = 44166, - [SMALL_STATE(1147)] = 44208, - [SMALL_STATE(1148)] = 44262, - [SMALL_STATE(1149)] = 44332, - [SMALL_STATE(1150)] = 44406, - [SMALL_STATE(1151)] = 44474, - [SMALL_STATE(1152)] = 44516, - [SMALL_STATE(1153)] = 44584, - [SMALL_STATE(1154)] = 44650, - [SMALL_STATE(1155)] = 44692, - [SMALL_STATE(1156)] = 44756, - [SMALL_STATE(1157)] = 44796, - [SMALL_STATE(1158)] = 44858, - [SMALL_STATE(1159)] = 44898, - [SMALL_STATE(1160)] = 44956, - [SMALL_STATE(1161)] = 45012, - [SMALL_STATE(1162)] = 45054, - [SMALL_STATE(1163)] = 45128, - [SMALL_STATE(1164)] = 45202, - [SMALL_STATE(1165)] = 45242, - [SMALL_STATE(1166)] = 45305, - [SMALL_STATE(1167)] = 45348, - [SMALL_STATE(1168)] = 45421, - [SMALL_STATE(1169)] = 45474, - [SMALL_STATE(1170)] = 45547, - [SMALL_STATE(1171)] = 45590, - [SMALL_STATE(1172)] = 45645, - [SMALL_STATE(1173)] = 45718, - [SMALL_STATE(1174)] = 45775, - [SMALL_STATE(1175)] = 45814, - [SMALL_STATE(1176)] = 45875, - [SMALL_STATE(1177)] = 45938, - [SMALL_STATE(1178)] = 46003, - [SMALL_STATE(1179)] = 46070, - [SMALL_STATE(1180)] = 46137, - [SMALL_STATE(1181)] = 46180, - [SMALL_STATE(1182)] = 46253, - [SMALL_STATE(1183)] = 46322, - [SMALL_STATE(1184)] = 46382, - [SMALL_STATE(1185)] = 46442, - [SMALL_STATE(1186)] = 46502, - [SMALL_STATE(1187)] = 46562, - [SMALL_STATE(1188)] = 46622, - [SMALL_STATE(1189)] = 46682, - [SMALL_STATE(1190)] = 46742, - [SMALL_STATE(1191)] = 46802, - [SMALL_STATE(1192)] = 46877, - [SMALL_STATE(1193)] = 46952, - [SMALL_STATE(1194)] = 47027, - [SMALL_STATE(1195)] = 47102, - [SMALL_STATE(1196)] = 47177, - [SMALL_STATE(1197)] = 47252, - [SMALL_STATE(1198)] = 47327, - [SMALL_STATE(1199)] = 47400, - [SMALL_STATE(1200)] = 47471, - [SMALL_STATE(1201)] = 47546, - [SMALL_STATE(1202)] = 47614, - [SMALL_STATE(1203)] = 47670, - [SMALL_STATE(1204)] = 47726, - [SMALL_STATE(1205)] = 47782, - [SMALL_STATE(1206)] = 47838, - [SMALL_STATE(1207)] = 47900, - [SMALL_STATE(1208)] = 47964, - [SMALL_STATE(1209)] = 48038, - [SMALL_STATE(1210)] = 48104, - [SMALL_STATE(1211)] = 48176, - [SMALL_STATE(1212)] = 48232, - [SMALL_STATE(1213)] = 48304, - [SMALL_STATE(1214)] = 48360, - [SMALL_STATE(1215)] = 48426, - [SMALL_STATE(1216)] = 48478, - [SMALL_STATE(1217)] = 48534, - [SMALL_STATE(1218)] = 48606, - [SMALL_STATE(1219)] = 48678, - [SMALL_STATE(1220)] = 48750, - [SMALL_STATE(1221)] = 48810, - [SMALL_STATE(1222)] = 48882, - [SMALL_STATE(1223)] = 48952, - [SMALL_STATE(1224)] = 49008, - [SMALL_STATE(1225)] = 49078, - [SMALL_STATE(1226)] = 49150, - [SMALL_STATE(1227)] = 49222, - [SMALL_STATE(1228)] = 49278, - [SMALL_STATE(1229)] = 49348, - [SMALL_STATE(1230)] = 49404, - [SMALL_STATE(1231)] = 49476, - [SMALL_STATE(1232)] = 49532, - [SMALL_STATE(1233)] = 49588, - [SMALL_STATE(1234)] = 49660, - [SMALL_STATE(1235)] = 49716, - [SMALL_STATE(1236)] = 49788, - [SMALL_STATE(1237)] = 49842, - [SMALL_STATE(1238)] = 49898, - [SMALL_STATE(1239)] = 49970, - [SMALL_STATE(1240)] = 50042, - [SMALL_STATE(1241)] = 50114, - [SMALL_STATE(1242)] = 50186, - [SMALL_STATE(1243)] = 50242, - [SMALL_STATE(1244)] = 50314, - [SMALL_STATE(1245)] = 50384, - [SMALL_STATE(1246)] = 50456, - [SMALL_STATE(1247)] = 50528, - [SMALL_STATE(1248)] = 50584, - [SMALL_STATE(1249)] = 50654, - [SMALL_STATE(1250)] = 50726, - [SMALL_STATE(1251)] = 50796, - [SMALL_STATE(1252)] = 50868, - [SMALL_STATE(1253)] = 50924, - [SMALL_STATE(1254)] = 50996, - [SMALL_STATE(1255)] = 51052, - [SMALL_STATE(1256)] = 51124, - [SMALL_STATE(1257)] = 51196, - [SMALL_STATE(1258)] = 51266, - [SMALL_STATE(1259)] = 51338, - [SMALL_STATE(1260)] = 51394, - [SMALL_STATE(1261)] = 51466, - [SMALL_STATE(1262)] = 51538, - [SMALL_STATE(1263)] = 51608, - [SMALL_STATE(1264)] = 51661, - [SMALL_STATE(1265)] = 51730, - [SMALL_STATE(1266)] = 51799, - [SMALL_STATE(1267)] = 51868, - [SMALL_STATE(1268)] = 51937, - [SMALL_STATE(1269)] = 52006, - [SMALL_STATE(1270)] = 52075, - [SMALL_STATE(1271)] = 52144, - [SMALL_STATE(1272)] = 52213, - [SMALL_STATE(1273)] = 52282, - [SMALL_STATE(1274)] = 52351, - [SMALL_STATE(1275)] = 52420, - [SMALL_STATE(1276)] = 52489, - [SMALL_STATE(1277)] = 52542, - [SMALL_STATE(1278)] = 52611, - [SMALL_STATE(1279)] = 52680, - [SMALL_STATE(1280)] = 52749, - [SMALL_STATE(1281)] = 52802, - [SMALL_STATE(1282)] = 52855, - [SMALL_STATE(1283)] = 52924, - [SMALL_STATE(1284)] = 52993, - [SMALL_STATE(1285)] = 53062, - [SMALL_STATE(1286)] = 53131, - [SMALL_STATE(1287)] = 53200, - [SMALL_STATE(1288)] = 53253, - [SMALL_STATE(1289)] = 53322, - [SMALL_STATE(1290)] = 53391, - [SMALL_STATE(1291)] = 53444, - [SMALL_STATE(1292)] = 53513, - [SMALL_STATE(1293)] = 53582, - [SMALL_STATE(1294)] = 53651, - [SMALL_STATE(1295)] = 53720, - [SMALL_STATE(1296)] = 53789, - [SMALL_STATE(1297)] = 53828, - [SMALL_STATE(1298)] = 53897, - [SMALL_STATE(1299)] = 53966, - [SMALL_STATE(1300)] = 54035, - [SMALL_STATE(1301)] = 54104, - [SMALL_STATE(1302)] = 54148, - [SMALL_STATE(1303)] = 54214, - [SMALL_STATE(1304)] = 54256, - [SMALL_STATE(1305)] = 54298, - [SMALL_STATE(1306)] = 54334, - [SMALL_STATE(1307)] = 54370, - [SMALL_STATE(1308)] = 54406, - [SMALL_STATE(1309)] = 54442, - [SMALL_STATE(1310)] = 54489, - [SMALL_STATE(1311)] = 54520, - [SMALL_STATE(1312)] = 54551, - [SMALL_STATE(1313)] = 54598, - [SMALL_STATE(1314)] = 54645, - [SMALL_STATE(1315)] = 54692, - [SMALL_STATE(1316)] = 54739, - [SMALL_STATE(1317)] = 54786, - [SMALL_STATE(1318)] = 54822, - [SMALL_STATE(1319)] = 54866, - [SMALL_STATE(1320)] = 54910, - [SMALL_STATE(1321)] = 54954, - [SMALL_STATE(1322)] = 54998, - [SMALL_STATE(1323)] = 55042, - [SMALL_STATE(1324)] = 55086, - [SMALL_STATE(1325)] = 55120, - [SMALL_STATE(1326)] = 55158, - [SMALL_STATE(1327)] = 55201, - [SMALL_STATE(1328)] = 55256, - [SMALL_STATE(1329)] = 55311, - [SMALL_STATE(1330)] = 55354, - [SMALL_STATE(1331)] = 55409, - [SMALL_STATE(1332)] = 55442, - [SMALL_STATE(1333)] = 55485, - [SMALL_STATE(1334)] = 55525, - [SMALL_STATE(1335)] = 55553, - [SMALL_STATE(1336)] = 55581, - [SMALL_STATE(1337)] = 55621, - [SMALL_STATE(1338)] = 55661, - [SMALL_STATE(1339)] = 55701, - [SMALL_STATE(1340)] = 55741, - [SMALL_STATE(1341)] = 55781, - [SMALL_STATE(1342)] = 55821, - [SMALL_STATE(1343)] = 55861, - [SMALL_STATE(1344)] = 55901, - [SMALL_STATE(1345)] = 55941, - [SMALL_STATE(1346)] = 55991, - [SMALL_STATE(1347)] = 56031, - [SMALL_STATE(1348)] = 56071, - [SMALL_STATE(1349)] = 56111, - [SMALL_STATE(1350)] = 56159, - [SMALL_STATE(1351)] = 56199, - [SMALL_STATE(1352)] = 56239, - [SMALL_STATE(1353)] = 56279, - [SMALL_STATE(1354)] = 56319, - [SMALL_STATE(1355)] = 56347, - [SMALL_STATE(1356)] = 56387, - [SMALL_STATE(1357)] = 56427, - [SMALL_STATE(1358)] = 56467, - [SMALL_STATE(1359)] = 56507, - [SMALL_STATE(1360)] = 56547, - [SMALL_STATE(1361)] = 56587, - [SMALL_STATE(1362)] = 56627, - [SMALL_STATE(1363)] = 56667, - [SMALL_STATE(1364)] = 56707, - [SMALL_STATE(1365)] = 56735, - [SMALL_STATE(1366)] = 56763, - [SMALL_STATE(1367)] = 56803, - [SMALL_STATE(1368)] = 56835, - [SMALL_STATE(1369)] = 56863, - [SMALL_STATE(1370)] = 56891, - [SMALL_STATE(1371)] = 56923, - [SMALL_STATE(1372)] = 56971, - [SMALL_STATE(1373)] = 57017, - [SMALL_STATE(1374)] = 57057, - [SMALL_STATE(1375)] = 57101, - [SMALL_STATE(1376)] = 57143, - [SMALL_STATE(1377)] = 57183, - [SMALL_STATE(1378)] = 57219, - [SMALL_STATE(1379)] = 57253, - [SMALL_STATE(1380)] = 57293, - [SMALL_STATE(1381)] = 57333, - [SMALL_STATE(1382)] = 57373, - [SMALL_STATE(1383)] = 57401, - [SMALL_STATE(1384)] = 57429, - [SMALL_STATE(1385)] = 57469, - [SMALL_STATE(1386)] = 57501, - [SMALL_STATE(1387)] = 57541, - [SMALL_STATE(1388)] = 57573, - [SMALL_STATE(1389)] = 57613, - [SMALL_STATE(1390)] = 57653, - [SMALL_STATE(1391)] = 57693, - [SMALL_STATE(1392)] = 57733, - [SMALL_STATE(1393)] = 57779, - [SMALL_STATE(1394)] = 57819, - [SMALL_STATE(1395)] = 57859, - [SMALL_STATE(1396)] = 57891, - [SMALL_STATE(1397)] = 57919, - [SMALL_STATE(1398)] = 57959, - [SMALL_STATE(1399)] = 57999, - [SMALL_STATE(1400)] = 58026, - [SMALL_STATE(1401)] = 58071, - [SMALL_STATE(1402)] = 58116, - [SMALL_STATE(1403)] = 58147, - [SMALL_STATE(1404)] = 58192, - [SMALL_STATE(1405)] = 58223, - [SMALL_STATE(1406)] = 58252, - [SMALL_STATE(1407)] = 58297, - [SMALL_STATE(1408)] = 58324, - [SMALL_STATE(1409)] = 58369, - [SMALL_STATE(1410)] = 58414, - [SMALL_STATE(1411)] = 58463, - [SMALL_STATE(1412)] = 58508, - [SMALL_STATE(1413)] = 58551, - [SMALL_STATE(1414)] = 58592, - [SMALL_STATE(1415)] = 58631, - [SMALL_STATE(1416)] = 58668, - [SMALL_STATE(1417)] = 58695, - [SMALL_STATE(1418)] = 58730, - [SMALL_STATE(1419)] = 58775, - [SMALL_STATE(1420)] = 58806, - [SMALL_STATE(1421)] = 58839, - [SMALL_STATE(1422)] = 58884, - [SMALL_STATE(1423)] = 58915, - [SMALL_STATE(1424)] = 58960, - [SMALL_STATE(1425)] = 59005, - [SMALL_STATE(1426)] = 59050, - [SMALL_STATE(1427)] = 59077, - [SMALL_STATE(1428)] = 59104, - [SMALL_STATE(1429)] = 59131, - [SMALL_STATE(1430)] = 59162, - [SMALL_STATE(1431)] = 59189, - [SMALL_STATE(1432)] = 59238, - [SMALL_STATE(1433)] = 59283, - [SMALL_STATE(1434)] = 59314, - [SMALL_STATE(1435)] = 59347, - [SMALL_STATE(1436)] = 59374, - [SMALL_STATE(1437)] = 59419, - [SMALL_STATE(1438)] = 59450, - [SMALL_STATE(1439)] = 59495, - [SMALL_STATE(1440)] = 59540, - [SMALL_STATE(1441)] = 59571, - [SMALL_STATE(1442)] = 59602, - [SMALL_STATE(1443)] = 59637, - [SMALL_STATE(1444)] = 59682, - [SMALL_STATE(1445)] = 59709, - [SMALL_STATE(1446)] = 59736, - [SMALL_STATE(1447)] = 59777, - [SMALL_STATE(1448)] = 59818, - [SMALL_STATE(1449)] = 59859, - [SMALL_STATE(1450)] = 59900, - [SMALL_STATE(1451)] = 59941, - [SMALL_STATE(1452)] = 59982, - [SMALL_STATE(1453)] = 60023, - [SMALL_STATE(1454)] = 60064, - [SMALL_STATE(1455)] = 60099, - [SMALL_STATE(1456)] = 60140, - [SMALL_STATE(1457)] = 60181, - [SMALL_STATE(1458)] = 60229, - [SMALL_STATE(1459)] = 60277, - [SMALL_STATE(1460)] = 60325, - [SMALL_STATE(1461)] = 60373, - [SMALL_STATE(1462)] = 60421, - [SMALL_STATE(1463)] = 60459, - [SMALL_STATE(1464)] = 60497, - [SMALL_STATE(1465)] = 60542, - [SMALL_STATE(1466)] = 60587, - [SMALL_STATE(1467)] = 60628, - [SMALL_STATE(1468)] = 60673, - [SMALL_STATE(1469)] = 60714, - [SMALL_STATE(1470)] = 60755, - [SMALL_STATE(1471)] = 60796, - [SMALL_STATE(1472)] = 60841, - [SMALL_STATE(1473)] = 60886, - [SMALL_STATE(1474)] = 60925, - [SMALL_STATE(1475)] = 60963, - [SMALL_STATE(1476)] = 61001, - [SMALL_STATE(1477)] = 61039, - [SMALL_STATE(1478)] = 61077, - [SMALL_STATE(1479)] = 61115, - [SMALL_STATE(1480)] = 61141, - [SMALL_STATE(1481)] = 61171, - [SMALL_STATE(1482)] = 61210, - [SMALL_STATE(1483)] = 61245, - [SMALL_STATE(1484)] = 61274, - [SMALL_STATE(1485)] = 61309, - [SMALL_STATE(1486)] = 61334, - [SMALL_STATE(1487)] = 61369, - [SMALL_STATE(1488)] = 61394, - [SMALL_STATE(1489)] = 61429, - [SMALL_STATE(1490)] = 61464, - [SMALL_STATE(1491)] = 61493, - [SMALL_STATE(1492)] = 61528, - [SMALL_STATE(1493)] = 61553, - [SMALL_STATE(1494)] = 61588, - [SMALL_STATE(1495)] = 61613, - [SMALL_STATE(1496)] = 61646, - [SMALL_STATE(1497)] = 61681, - [SMALL_STATE(1498)] = 61716, - [SMALL_STATE(1499)] = 61745, - [SMALL_STATE(1500)] = 61774, - [SMALL_STATE(1501)] = 61807, - [SMALL_STATE(1502)] = 61842, - [SMALL_STATE(1503)] = 61877, - [SMALL_STATE(1504)] = 61912, - [SMALL_STATE(1505)] = 61944, - [SMALL_STATE(1506)] = 61976, - [SMALL_STATE(1507)] = 61996, - [SMALL_STATE(1508)] = 62028, - [SMALL_STATE(1509)] = 62060, - [SMALL_STATE(1510)] = 62094, - [SMALL_STATE(1511)] = 62126, - [SMALL_STATE(1512)] = 62158, - [SMALL_STATE(1513)] = 62182, - [SMALL_STATE(1514)] = 62202, - [SMALL_STATE(1515)] = 62238, - [SMALL_STATE(1516)] = 62258, - [SMALL_STATE(1517)] = 62289, - [SMALL_STATE(1518)] = 62318, - [SMALL_STATE(1519)] = 62351, - [SMALL_STATE(1520)] = 62380, - [SMALL_STATE(1521)] = 62413, - [SMALL_STATE(1522)] = 62444, - [SMALL_STATE(1523)] = 62473, - [SMALL_STATE(1524)] = 62500, - [SMALL_STATE(1525)] = 62527, - [SMALL_STATE(1526)] = 62560, - [SMALL_STATE(1527)] = 62587, - [SMALL_STATE(1528)] = 62616, - [SMALL_STATE(1529)] = 62645, - [SMALL_STATE(1530)] = 62674, - [SMALL_STATE(1531)] = 62701, - [SMALL_STATE(1532)] = 62730, - [SMALL_STATE(1533)] = 62759, - [SMALL_STATE(1534)] = 62788, - [SMALL_STATE(1535)] = 62819, - [SMALL_STATE(1536)] = 62848, - [SMALL_STATE(1537)] = 62872, - [SMALL_STATE(1538)] = 62890, - [SMALL_STATE(1539)] = 62908, - [SMALL_STATE(1540)] = 62926, - [SMALL_STATE(1541)] = 62950, - [SMALL_STATE(1542)] = 62976, - [SMALL_STATE(1543)] = 63002, - [SMALL_STATE(1544)] = 63024, - [SMALL_STATE(1545)] = 63054, - [SMALL_STATE(1546)] = 63072, - [SMALL_STATE(1547)] = 63098, - [SMALL_STATE(1548)] = 63116, - [SMALL_STATE(1549)] = 63134, - [SMALL_STATE(1550)] = 63160, - [SMALL_STATE(1551)] = 63183, - [SMALL_STATE(1552)] = 63206, - [SMALL_STATE(1553)] = 63235, - [SMALL_STATE(1554)] = 63256, - [SMALL_STATE(1555)] = 63285, - [SMALL_STATE(1556)] = 63314, - [SMALL_STATE(1557)] = 63335, - [SMALL_STATE(1558)] = 63360, - [SMALL_STATE(1559)] = 63389, - [SMALL_STATE(1560)] = 63412, - [SMALL_STATE(1561)] = 63433, - [SMALL_STATE(1562)] = 63462, - [SMALL_STATE(1563)] = 63483, - [SMALL_STATE(1564)] = 63506, - [SMALL_STATE(1565)] = 63527, - [SMALL_STATE(1566)] = 63548, - [SMALL_STATE(1567)] = 63564, - [SMALL_STATE(1568)] = 63588, - [SMALL_STATE(1569)] = 63608, - [SMALL_STATE(1570)] = 63634, - [SMALL_STATE(1571)] = 63650, - [SMALL_STATE(1572)] = 63676, - [SMALL_STATE(1573)] = 63696, - [SMALL_STATE(1574)] = 63712, - [SMALL_STATE(1575)] = 63738, - [SMALL_STATE(1576)] = 63758, - [SMALL_STATE(1577)] = 63782, - [SMALL_STATE(1578)] = 63798, - [SMALL_STATE(1579)] = 63816, - [SMALL_STATE(1580)] = 63842, - [SMALL_STATE(1581)] = 63868, - [SMALL_STATE(1582)] = 63892, - [SMALL_STATE(1583)] = 63918, - [SMALL_STATE(1584)] = 63944, - [SMALL_STATE(1585)] = 63968, - [SMALL_STATE(1586)] = 63988, - [SMALL_STATE(1587)] = 64008, - [SMALL_STATE(1588)] = 64030, - [SMALL_STATE(1589)] = 64046, - [SMALL_STATE(1590)] = 64072, - [SMALL_STATE(1591)] = 64088, - [SMALL_STATE(1592)] = 64114, - [SMALL_STATE(1593)] = 64140, - [SMALL_STATE(1594)] = 64158, - [SMALL_STATE(1595)] = 64174, - [SMALL_STATE(1596)] = 64200, - [SMALL_STATE(1597)] = 64220, - [SMALL_STATE(1598)] = 64244, - [SMALL_STATE(1599)] = 64268, - [SMALL_STATE(1600)] = 64284, - [SMALL_STATE(1601)] = 64304, - [SMALL_STATE(1602)] = 64319, - [SMALL_STATE(1603)] = 64344, - [SMALL_STATE(1604)] = 64363, - [SMALL_STATE(1605)] = 64378, - [SMALL_STATE(1606)] = 64401, - [SMALL_STATE(1607)] = 64416, - [SMALL_STATE(1608)] = 64431, - [SMALL_STATE(1609)] = 64450, - [SMALL_STATE(1610)] = 64467, - [SMALL_STATE(1611)] = 64482, - [SMALL_STATE(1612)] = 64505, - [SMALL_STATE(1613)] = 64520, - [SMALL_STATE(1614)] = 64535, - [SMALL_STATE(1615)] = 64558, - [SMALL_STATE(1616)] = 64573, - [SMALL_STATE(1617)] = 64588, - [SMALL_STATE(1618)] = 64604, - [SMALL_STATE(1619)] = 64618, - [SMALL_STATE(1620)] = 64636, - [SMALL_STATE(1621)] = 64650, - [SMALL_STATE(1622)] = 64668, - [SMALL_STATE(1623)] = 64682, - [SMALL_STATE(1624)] = 64696, - [SMALL_STATE(1625)] = 64712, - [SMALL_STATE(1626)] = 64726, - [SMALL_STATE(1627)] = 64740, - [SMALL_STATE(1628)] = 64758, - [SMALL_STATE(1629)] = 64772, - [SMALL_STATE(1630)] = 64786, - [SMALL_STATE(1631)] = 64800, - [SMALL_STATE(1632)] = 64814, - [SMALL_STATE(1633)] = 64830, - [SMALL_STATE(1634)] = 64848, - [SMALL_STATE(1635)] = 64866, - [SMALL_STATE(1636)] = 64880, - [SMALL_STATE(1637)] = 64896, - [SMALL_STATE(1638)] = 64912, - [SMALL_STATE(1639)] = 64930, - [SMALL_STATE(1640)] = 64944, - [SMALL_STATE(1641)] = 64958, - [SMALL_STATE(1642)] = 64972, - [SMALL_STATE(1643)] = 64986, - [SMALL_STATE(1644)] = 65000, - [SMALL_STATE(1645)] = 65016, - [SMALL_STATE(1646)] = 65030, - [SMALL_STATE(1647)] = 65048, - [SMALL_STATE(1648)] = 65065, - [SMALL_STATE(1649)] = 65082, - [SMALL_STATE(1650)] = 65093, - [SMALL_STATE(1651)] = 65104, - [SMALL_STATE(1652)] = 65115, - [SMALL_STATE(1653)] = 65126, - [SMALL_STATE(1654)] = 65137, - [SMALL_STATE(1655)] = 65156, - [SMALL_STATE(1656)] = 65167, - [SMALL_STATE(1657)] = 65186, - [SMALL_STATE(1658)] = 65197, - [SMALL_STATE(1659)] = 65208, - [SMALL_STATE(1660)] = 65219, - [SMALL_STATE(1661)] = 65230, - [SMALL_STATE(1662)] = 65249, - [SMALL_STATE(1663)] = 65260, - [SMALL_STATE(1664)] = 65273, - [SMALL_STATE(1665)] = 65284, - [SMALL_STATE(1666)] = 65298, - [SMALL_STATE(1667)] = 65314, - [SMALL_STATE(1668)] = 65328, - [SMALL_STATE(1669)] = 65342, - [SMALL_STATE(1670)] = 65356, - [SMALL_STATE(1671)] = 65370, - [SMALL_STATE(1672)] = 65384, - [SMALL_STATE(1673)] = 65398, - [SMALL_STATE(1674)] = 65412, - [SMALL_STATE(1675)] = 65426, - [SMALL_STATE(1676)] = 65442, - [SMALL_STATE(1677)] = 65458, - [SMALL_STATE(1678)] = 65472, - [SMALL_STATE(1679)] = 65486, - [SMALL_STATE(1680)] = 65500, - [SMALL_STATE(1681)] = 65514, - [SMALL_STATE(1682)] = 65530, - [SMALL_STATE(1683)] = 65546, - [SMALL_STATE(1684)] = 65562, - [SMALL_STATE(1685)] = 65576, - [SMALL_STATE(1686)] = 65590, - [SMALL_STATE(1687)] = 65604, - [SMALL_STATE(1688)] = 65620, - [SMALL_STATE(1689)] = 65634, - [SMALL_STATE(1690)] = 65648, - [SMALL_STATE(1691)] = 65664, - [SMALL_STATE(1692)] = 65674, - [SMALL_STATE(1693)] = 65688, - [SMALL_STATE(1694)] = 65702, - [SMALL_STATE(1695)] = 65718, - [SMALL_STATE(1696)] = 65732, - [SMALL_STATE(1697)] = 65748, - [SMALL_STATE(1698)] = 65764, - [SMALL_STATE(1699)] = 65780, - [SMALL_STATE(1700)] = 65794, - [SMALL_STATE(1701)] = 65810, - [SMALL_STATE(1702)] = 65826, - [SMALL_STATE(1703)] = 65840, - [SMALL_STATE(1704)] = 65854, - [SMALL_STATE(1705)] = 65870, - [SMALL_STATE(1706)] = 65884, - [SMALL_STATE(1707)] = 65898, - [SMALL_STATE(1708)] = 65912, - [SMALL_STATE(1709)] = 65928, - [SMALL_STATE(1710)] = 65942, - [SMALL_STATE(1711)] = 65956, - [SMALL_STATE(1712)] = 65966, - [SMALL_STATE(1713)] = 65980, - [SMALL_STATE(1714)] = 65994, - [SMALL_STATE(1715)] = 66010, - [SMALL_STATE(1716)] = 66024, - [SMALL_STATE(1717)] = 66038, - [SMALL_STATE(1718)] = 66052, - [SMALL_STATE(1719)] = 66066, - [SMALL_STATE(1720)] = 66080, - [SMALL_STATE(1721)] = 66094, - [SMALL_STATE(1722)] = 66108, - [SMALL_STATE(1723)] = 66122, - [SMALL_STATE(1724)] = 66138, - [SMALL_STATE(1725)] = 66152, - [SMALL_STATE(1726)] = 66168, - [SMALL_STATE(1727)] = 66182, - [SMALL_STATE(1728)] = 66196, - [SMALL_STATE(1729)] = 66212, - [SMALL_STATE(1730)] = 66228, - [SMALL_STATE(1731)] = 66242, - [SMALL_STATE(1732)] = 66256, - [SMALL_STATE(1733)] = 66270, - [SMALL_STATE(1734)] = 66284, - [SMALL_STATE(1735)] = 66298, - [SMALL_STATE(1736)] = 66312, - [SMALL_STATE(1737)] = 66328, - [SMALL_STATE(1738)] = 66342, - [SMALL_STATE(1739)] = 66355, - [SMALL_STATE(1740)] = 66368, - [SMALL_STATE(1741)] = 66379, - [SMALL_STATE(1742)] = 66392, - [SMALL_STATE(1743)] = 66401, - [SMALL_STATE(1744)] = 66414, - [SMALL_STATE(1745)] = 66427, - [SMALL_STATE(1746)] = 66440, - [SMALL_STATE(1747)] = 66453, - [SMALL_STATE(1748)] = 66462, - [SMALL_STATE(1749)] = 66475, - [SMALL_STATE(1750)] = 66488, - [SMALL_STATE(1751)] = 66501, - [SMALL_STATE(1752)] = 66514, - [SMALL_STATE(1753)] = 66523, - [SMALL_STATE(1754)] = 66536, - [SMALL_STATE(1755)] = 66549, - [SMALL_STATE(1756)] = 66562, - [SMALL_STATE(1757)] = 66571, - [SMALL_STATE(1758)] = 66584, - [SMALL_STATE(1759)] = 66597, - [SMALL_STATE(1760)] = 66610, - [SMALL_STATE(1761)] = 66623, - [SMALL_STATE(1762)] = 66634, - [SMALL_STATE(1763)] = 66645, - [SMALL_STATE(1764)] = 66658, - [SMALL_STATE(1765)] = 66667, - [SMALL_STATE(1766)] = 66680, - [SMALL_STATE(1767)] = 66693, - [SMALL_STATE(1768)] = 66706, - [SMALL_STATE(1769)] = 66715, - [SMALL_STATE(1770)] = 66728, - [SMALL_STATE(1771)] = 66741, - [SMALL_STATE(1772)] = 66754, - [SMALL_STATE(1773)] = 66767, - [SMALL_STATE(1774)] = 66776, - [SMALL_STATE(1775)] = 66789, - [SMALL_STATE(1776)] = 66802, - [SMALL_STATE(1777)] = 66811, - [SMALL_STATE(1778)] = 66820, - [SMALL_STATE(1779)] = 66833, - [SMALL_STATE(1780)] = 66846, - [SMALL_STATE(1781)] = 66859, - [SMALL_STATE(1782)] = 66872, - [SMALL_STATE(1783)] = 66885, - [SMALL_STATE(1784)] = 66898, - [SMALL_STATE(1785)] = 66907, - [SMALL_STATE(1786)] = 66920, - [SMALL_STATE(1787)] = 66933, - [SMALL_STATE(1788)] = 66946, - [SMALL_STATE(1789)] = 66959, - [SMALL_STATE(1790)] = 66972, - [SMALL_STATE(1791)] = 66985, - [SMALL_STATE(1792)] = 66998, - [SMALL_STATE(1793)] = 67011, - [SMALL_STATE(1794)] = 67024, - [SMALL_STATE(1795)] = 67037, - [SMALL_STATE(1796)] = 67050, - [SMALL_STATE(1797)] = 67063, - [SMALL_STATE(1798)] = 67072, - [SMALL_STATE(1799)] = 67085, - [SMALL_STATE(1800)] = 67098, - [SMALL_STATE(1801)] = 67111, - [SMALL_STATE(1802)] = 67124, - [SMALL_STATE(1803)] = 67137, - [SMALL_STATE(1804)] = 67148, - [SMALL_STATE(1805)] = 67161, - [SMALL_STATE(1806)] = 67174, - [SMALL_STATE(1807)] = 67185, - [SMALL_STATE(1808)] = 67198, - [SMALL_STATE(1809)] = 67211, - [SMALL_STATE(1810)] = 67224, - [SMALL_STATE(1811)] = 67237, - [SMALL_STATE(1812)] = 67250, - [SMALL_STATE(1813)] = 67263, - [SMALL_STATE(1814)] = 67276, - [SMALL_STATE(1815)] = 67289, - [SMALL_STATE(1816)] = 67302, - [SMALL_STATE(1817)] = 67315, - [SMALL_STATE(1818)] = 67328, - [SMALL_STATE(1819)] = 67341, - [SMALL_STATE(1820)] = 67354, - [SMALL_STATE(1821)] = 67365, - [SMALL_STATE(1822)] = 67378, - [SMALL_STATE(1823)] = 67391, - [SMALL_STATE(1824)] = 67404, - [SMALL_STATE(1825)] = 67417, - [SMALL_STATE(1826)] = 67430, - [SMALL_STATE(1827)] = 67443, - [SMALL_STATE(1828)] = 67456, - [SMALL_STATE(1829)] = 67469, - [SMALL_STATE(1830)] = 67482, - [SMALL_STATE(1831)] = 67492, - [SMALL_STATE(1832)] = 67500, - [SMALL_STATE(1833)] = 67508, - [SMALL_STATE(1834)] = 67518, - [SMALL_STATE(1835)] = 67528, - [SMALL_STATE(1836)] = 67538, - [SMALL_STATE(1837)] = 67548, - [SMALL_STATE(1838)] = 67558, - [SMALL_STATE(1839)] = 67568, - [SMALL_STATE(1840)] = 67578, - [SMALL_STATE(1841)] = 67588, - [SMALL_STATE(1842)] = 67598, - [SMALL_STATE(1843)] = 67606, - [SMALL_STATE(1844)] = 67614, - [SMALL_STATE(1845)] = 67624, - [SMALL_STATE(1846)] = 67634, - [SMALL_STATE(1847)] = 67644, - [SMALL_STATE(1848)] = 67654, - [SMALL_STATE(1849)] = 67664, - [SMALL_STATE(1850)] = 67674, - [SMALL_STATE(1851)] = 67684, - [SMALL_STATE(1852)] = 67694, - [SMALL_STATE(1853)] = 67702, - [SMALL_STATE(1854)] = 67712, - [SMALL_STATE(1855)] = 67720, - [SMALL_STATE(1856)] = 67730, - [SMALL_STATE(1857)] = 67740, - [SMALL_STATE(1858)] = 67750, - [SMALL_STATE(1859)] = 67760, - [SMALL_STATE(1860)] = 67770, - [SMALL_STATE(1861)] = 67780, - [SMALL_STATE(1862)] = 67790, - [SMALL_STATE(1863)] = 67800, - [SMALL_STATE(1864)] = 67810, - [SMALL_STATE(1865)] = 67820, - [SMALL_STATE(1866)] = 67830, - [SMALL_STATE(1867)] = 67840, - [SMALL_STATE(1868)] = 67850, - [SMALL_STATE(1869)] = 67860, - [SMALL_STATE(1870)] = 67868, - [SMALL_STATE(1871)] = 67878, - [SMALL_STATE(1872)] = 67888, - [SMALL_STATE(1873)] = 67898, - [SMALL_STATE(1874)] = 67908, - [SMALL_STATE(1875)] = 67918, - [SMALL_STATE(1876)] = 67926, - [SMALL_STATE(1877)] = 67934, - [SMALL_STATE(1878)] = 67944, - [SMALL_STATE(1879)] = 67952, - [SMALL_STATE(1880)] = 67960, - [SMALL_STATE(1881)] = 67968, - [SMALL_STATE(1882)] = 67976, - [SMALL_STATE(1883)] = 67984, - [SMALL_STATE(1884)] = 67994, - [SMALL_STATE(1885)] = 68004, - [SMALL_STATE(1886)] = 68014, - [SMALL_STATE(1887)] = 68024, - [SMALL_STATE(1888)] = 68034, - [SMALL_STATE(1889)] = 68044, - [SMALL_STATE(1890)] = 68054, - [SMALL_STATE(1891)] = 68064, - [SMALL_STATE(1892)] = 68074, - [SMALL_STATE(1893)] = 68084, - [SMALL_STATE(1894)] = 68092, - [SMALL_STATE(1895)] = 68102, - [SMALL_STATE(1896)] = 68110, - [SMALL_STATE(1897)] = 68120, - [SMALL_STATE(1898)] = 68130, - [SMALL_STATE(1899)] = 68138, - [SMALL_STATE(1900)] = 68148, - [SMALL_STATE(1901)] = 68158, - [SMALL_STATE(1902)] = 68168, - [SMALL_STATE(1903)] = 68178, - [SMALL_STATE(1904)] = 68188, - [SMALL_STATE(1905)] = 68198, - [SMALL_STATE(1906)] = 68208, - [SMALL_STATE(1907)] = 68218, - [SMALL_STATE(1908)] = 68228, - [SMALL_STATE(1909)] = 68238, - [SMALL_STATE(1910)] = 68248, - [SMALL_STATE(1911)] = 68258, - [SMALL_STATE(1912)] = 68268, - [SMALL_STATE(1913)] = 68278, - [SMALL_STATE(1914)] = 68288, - [SMALL_STATE(1915)] = 68298, - [SMALL_STATE(1916)] = 68308, - [SMALL_STATE(1917)] = 68318, - [SMALL_STATE(1918)] = 68328, - [SMALL_STATE(1919)] = 68338, - [SMALL_STATE(1920)] = 68346, - [SMALL_STATE(1921)] = 68356, - [SMALL_STATE(1922)] = 68366, - [SMALL_STATE(1923)] = 68376, - [SMALL_STATE(1924)] = 68386, - [SMALL_STATE(1925)] = 68396, - [SMALL_STATE(1926)] = 68406, - [SMALL_STATE(1927)] = 68416, - [SMALL_STATE(1928)] = 68426, - [SMALL_STATE(1929)] = 68436, - [SMALL_STATE(1930)] = 68446, - [SMALL_STATE(1931)] = 68456, - [SMALL_STATE(1932)] = 68463, - [SMALL_STATE(1933)] = 68470, - [SMALL_STATE(1934)] = 68477, - [SMALL_STATE(1935)] = 68484, - [SMALL_STATE(1936)] = 68491, - [SMALL_STATE(1937)] = 68498, - [SMALL_STATE(1938)] = 68505, - [SMALL_STATE(1939)] = 68512, - [SMALL_STATE(1940)] = 68519, - [SMALL_STATE(1941)] = 68526, - [SMALL_STATE(1942)] = 68533, - [SMALL_STATE(1943)] = 68540, - [SMALL_STATE(1944)] = 68547, - [SMALL_STATE(1945)] = 68554, - [SMALL_STATE(1946)] = 68561, - [SMALL_STATE(1947)] = 68568, - [SMALL_STATE(1948)] = 68575, - [SMALL_STATE(1949)] = 68582, - [SMALL_STATE(1950)] = 68589, - [SMALL_STATE(1951)] = 68596, - [SMALL_STATE(1952)] = 68603, - [SMALL_STATE(1953)] = 68610, - [SMALL_STATE(1954)] = 68617, - [SMALL_STATE(1955)] = 68624, - [SMALL_STATE(1956)] = 68631, - [SMALL_STATE(1957)] = 68638, - [SMALL_STATE(1958)] = 68645, - [SMALL_STATE(1959)] = 68652, - [SMALL_STATE(1960)] = 68659, - [SMALL_STATE(1961)] = 68666, - [SMALL_STATE(1962)] = 68673, - [SMALL_STATE(1963)] = 68680, - [SMALL_STATE(1964)] = 68687, - [SMALL_STATE(1965)] = 68694, - [SMALL_STATE(1966)] = 68701, - [SMALL_STATE(1967)] = 68708, - [SMALL_STATE(1968)] = 68715, - [SMALL_STATE(1969)] = 68722, - [SMALL_STATE(1970)] = 68729, - [SMALL_STATE(1971)] = 68736, - [SMALL_STATE(1972)] = 68743, - [SMALL_STATE(1973)] = 68750, - [SMALL_STATE(1974)] = 68757, - [SMALL_STATE(1975)] = 68764, - [SMALL_STATE(1976)] = 68771, - [SMALL_STATE(1977)] = 68778, - [SMALL_STATE(1978)] = 68785, - [SMALL_STATE(1979)] = 68792, - [SMALL_STATE(1980)] = 68799, - [SMALL_STATE(1981)] = 68806, - [SMALL_STATE(1982)] = 68813, - [SMALL_STATE(1983)] = 68820, - [SMALL_STATE(1984)] = 68827, - [SMALL_STATE(1985)] = 68834, - [SMALL_STATE(1986)] = 68841, - [SMALL_STATE(1987)] = 68848, - [SMALL_STATE(1988)] = 68855, - [SMALL_STATE(1989)] = 68862, - [SMALL_STATE(1990)] = 68869, - [SMALL_STATE(1991)] = 68876, - [SMALL_STATE(1992)] = 68883, - [SMALL_STATE(1993)] = 68890, - [SMALL_STATE(1994)] = 68897, - [SMALL_STATE(1995)] = 68904, - [SMALL_STATE(1996)] = 68911, - [SMALL_STATE(1997)] = 68918, - [SMALL_STATE(1998)] = 68925, - [SMALL_STATE(1999)] = 68932, - [SMALL_STATE(2000)] = 68939, - [SMALL_STATE(2001)] = 68946, - [SMALL_STATE(2002)] = 68953, - [SMALL_STATE(2003)] = 68960, - [SMALL_STATE(2004)] = 68967, - [SMALL_STATE(2005)] = 68974, - [SMALL_STATE(2006)] = 68981, - [SMALL_STATE(2007)] = 68988, - [SMALL_STATE(2008)] = 68995, - [SMALL_STATE(2009)] = 69002, - [SMALL_STATE(2010)] = 69009, - [SMALL_STATE(2011)] = 69016, - [SMALL_STATE(2012)] = 69023, - [SMALL_STATE(2013)] = 69030, - [SMALL_STATE(2014)] = 69037, - [SMALL_STATE(2015)] = 69044, - [SMALL_STATE(2016)] = 69051, - [SMALL_STATE(2017)] = 69058, - [SMALL_STATE(2018)] = 69065, - [SMALL_STATE(2019)] = 69072, - [SMALL_STATE(2020)] = 69079, - [SMALL_STATE(2021)] = 69086, - [SMALL_STATE(2022)] = 69093, - [SMALL_STATE(2023)] = 69100, - [SMALL_STATE(2024)] = 69107, - [SMALL_STATE(2025)] = 69114, - [SMALL_STATE(2026)] = 69121, - [SMALL_STATE(2027)] = 69128, - [SMALL_STATE(2028)] = 69135, - [SMALL_STATE(2029)] = 69142, - [SMALL_STATE(2030)] = 69149, - [SMALL_STATE(2031)] = 69156, - [SMALL_STATE(2032)] = 69163, - [SMALL_STATE(2033)] = 69170, - [SMALL_STATE(2034)] = 69177, - [SMALL_STATE(2035)] = 69184, - [SMALL_STATE(2036)] = 69191, - [SMALL_STATE(2037)] = 69198, - [SMALL_STATE(2038)] = 69205, - [SMALL_STATE(2039)] = 69212, - [SMALL_STATE(2040)] = 69219, - [SMALL_STATE(2041)] = 69226, - [SMALL_STATE(2042)] = 69233, - [SMALL_STATE(2043)] = 69240, - [SMALL_STATE(2044)] = 69247, - [SMALL_STATE(2045)] = 69254, - [SMALL_STATE(2046)] = 69261, - [SMALL_STATE(2047)] = 69268, - [SMALL_STATE(2048)] = 69275, - [SMALL_STATE(2049)] = 69282, - [SMALL_STATE(2050)] = 69289, - [SMALL_STATE(2051)] = 69296, - [SMALL_STATE(2052)] = 69303, - [SMALL_STATE(2053)] = 69310, - [SMALL_STATE(2054)] = 69317, - [SMALL_STATE(2055)] = 69324, - [SMALL_STATE(2056)] = 69331, - [SMALL_STATE(2057)] = 69338, - [SMALL_STATE(2058)] = 69345, - [SMALL_STATE(2059)] = 69352, - [SMALL_STATE(2060)] = 69359, - [SMALL_STATE(2061)] = 69366, - [SMALL_STATE(2062)] = 69373, - [SMALL_STATE(2063)] = 69380, - [SMALL_STATE(2064)] = 69387, - [SMALL_STATE(2065)] = 69394, - [SMALL_STATE(2066)] = 69401, - [SMALL_STATE(2067)] = 69408, - [SMALL_STATE(2068)] = 69415, - [SMALL_STATE(2069)] = 69422, - [SMALL_STATE(2070)] = 69429, - [SMALL_STATE(2071)] = 69436, - [SMALL_STATE(2072)] = 69443, - [SMALL_STATE(2073)] = 69450, - [SMALL_STATE(2074)] = 69457, - [SMALL_STATE(2075)] = 69464, - [SMALL_STATE(2076)] = 69471, - [SMALL_STATE(2077)] = 69478, - [SMALL_STATE(2078)] = 69485, - [SMALL_STATE(2079)] = 69492, - [SMALL_STATE(2080)] = 69499, - [SMALL_STATE(2081)] = 69506, - [SMALL_STATE(2082)] = 69513, - [SMALL_STATE(2083)] = 69520, - [SMALL_STATE(2084)] = 69527, - [SMALL_STATE(2085)] = 69534, - [SMALL_STATE(2086)] = 69541, - [SMALL_STATE(2087)] = 69548, - [SMALL_STATE(2088)] = 69555, - [SMALL_STATE(2089)] = 69562, - [SMALL_STATE(2090)] = 69569, - [SMALL_STATE(2091)] = 69576, - [SMALL_STATE(2092)] = 69583, - [SMALL_STATE(2093)] = 69590, - [SMALL_STATE(2094)] = 69597, - [SMALL_STATE(2095)] = 69604, - [SMALL_STATE(2096)] = 69611, - [SMALL_STATE(2097)] = 69618, - [SMALL_STATE(2098)] = 69625, - [SMALL_STATE(2099)] = 69632, - [SMALL_STATE(2100)] = 69639, - [SMALL_STATE(2101)] = 69646, - [SMALL_STATE(2102)] = 69653, - [SMALL_STATE(2103)] = 69660, - [SMALL_STATE(2104)] = 69667, - [SMALL_STATE(2105)] = 69674, - [SMALL_STATE(2106)] = 69681, - [SMALL_STATE(2107)] = 69688, - [SMALL_STATE(2108)] = 69695, - [SMALL_STATE(2109)] = 69702, - [SMALL_STATE(2110)] = 69709, - [SMALL_STATE(2111)] = 69716, - [SMALL_STATE(2112)] = 69723, - [SMALL_STATE(2113)] = 69730, - [SMALL_STATE(2114)] = 69737, - [SMALL_STATE(2115)] = 69744, - [SMALL_STATE(2116)] = 69751, - [SMALL_STATE(2117)] = 69758, - [SMALL_STATE(2118)] = 69765, - [SMALL_STATE(2119)] = 69772, - [SMALL_STATE(2120)] = 69779, - [SMALL_STATE(2121)] = 69786, - [SMALL_STATE(2122)] = 69793, - [SMALL_STATE(2123)] = 69800, - [SMALL_STATE(2124)] = 69807, - [SMALL_STATE(2125)] = 69814, - [SMALL_STATE(2126)] = 69821, - [SMALL_STATE(2127)] = 69828, - [SMALL_STATE(2128)] = 69835, - [SMALL_STATE(2129)] = 69842, - [SMALL_STATE(2130)] = 69849, - [SMALL_STATE(2131)] = 69856, - [SMALL_STATE(2132)] = 69863, - [SMALL_STATE(2133)] = 69870, - [SMALL_STATE(2134)] = 69877, - [SMALL_STATE(2135)] = 69884, - [SMALL_STATE(2136)] = 69891, - [SMALL_STATE(2137)] = 69898, - [SMALL_STATE(2138)] = 69905, - [SMALL_STATE(2139)] = 69912, - [SMALL_STATE(2140)] = 69919, - [SMALL_STATE(2141)] = 69926, - [SMALL_STATE(2142)] = 69933, - [SMALL_STATE(2143)] = 69940, - [SMALL_STATE(2144)] = 69947, - [SMALL_STATE(2145)] = 69954, - [SMALL_STATE(2146)] = 69961, - [SMALL_STATE(2147)] = 69968, - [SMALL_STATE(2148)] = 69975, - [SMALL_STATE(2149)] = 69982, - [SMALL_STATE(2150)] = 69989, - [SMALL_STATE(2151)] = 69996, - [SMALL_STATE(2152)] = 70003, - [SMALL_STATE(2153)] = 70010, - [SMALL_STATE(2154)] = 70017, - [SMALL_STATE(2155)] = 70024, - [SMALL_STATE(2156)] = 70031, - [SMALL_STATE(2157)] = 70038, - [SMALL_STATE(2158)] = 70045, - [SMALL_STATE(2159)] = 70052, - [SMALL_STATE(2160)] = 70059, - [SMALL_STATE(2161)] = 70066, - [SMALL_STATE(2162)] = 70073, - [SMALL_STATE(2163)] = 70080, - [SMALL_STATE(2164)] = 70087, - [SMALL_STATE(2165)] = 70094, - [SMALL_STATE(2166)] = 70101, - [SMALL_STATE(2167)] = 70108, - [SMALL_STATE(2168)] = 70115, - [SMALL_STATE(2169)] = 70122, - [SMALL_STATE(2170)] = 70129, - [SMALL_STATE(2171)] = 70136, - [SMALL_STATE(2172)] = 70143, - [SMALL_STATE(2173)] = 70150, - [SMALL_STATE(2174)] = 70157, - [SMALL_STATE(2175)] = 70164, - [SMALL_STATE(2176)] = 70171, - [SMALL_STATE(2177)] = 70178, - [SMALL_STATE(2178)] = 70185, - [SMALL_STATE(2179)] = 70192, - [SMALL_STATE(2180)] = 70199, - [SMALL_STATE(2181)] = 70206, - [SMALL_STATE(2182)] = 70213, - [SMALL_STATE(2183)] = 70220, - [SMALL_STATE(2184)] = 70227, - [SMALL_STATE(2185)] = 70234, - [SMALL_STATE(2186)] = 70241, - [SMALL_STATE(2187)] = 70248, - [SMALL_STATE(2188)] = 70255, - [SMALL_STATE(2189)] = 70262, - [SMALL_STATE(2190)] = 70269, - [SMALL_STATE(2191)] = 70276, - [SMALL_STATE(2192)] = 70283, - [SMALL_STATE(2193)] = 70290, - [SMALL_STATE(2194)] = 70297, - [SMALL_STATE(2195)] = 70304, - [SMALL_STATE(2196)] = 70311, - [SMALL_STATE(2197)] = 70318, - [SMALL_STATE(2198)] = 70325, - [SMALL_STATE(2199)] = 70332, - [SMALL_STATE(2200)] = 70339, - [SMALL_STATE(2201)] = 70346, - [SMALL_STATE(2202)] = 70353, - [SMALL_STATE(2203)] = 70360, - [SMALL_STATE(2204)] = 70367, - [SMALL_STATE(2205)] = 70374, - [SMALL_STATE(2206)] = 70381, - [SMALL_STATE(2207)] = 70388, - [SMALL_STATE(2208)] = 70395, - [SMALL_STATE(2209)] = 70402, - [SMALL_STATE(2210)] = 70409, - [SMALL_STATE(2211)] = 70416, - [SMALL_STATE(2212)] = 70423, - [SMALL_STATE(2213)] = 70430, - [SMALL_STATE(2214)] = 70437, - [SMALL_STATE(2215)] = 70444, - [SMALL_STATE(2216)] = 70451, - [SMALL_STATE(2217)] = 70458, - [SMALL_STATE(2218)] = 70465, - [SMALL_STATE(2219)] = 70472, - [SMALL_STATE(2220)] = 70479, - [SMALL_STATE(2221)] = 70486, - [SMALL_STATE(2222)] = 70493, - [SMALL_STATE(2223)] = 70500, - [SMALL_STATE(2224)] = 70507, - [SMALL_STATE(2225)] = 70514, - [SMALL_STATE(2226)] = 70521, - [SMALL_STATE(2227)] = 70528, - [SMALL_STATE(2228)] = 70535, + [SMALL_STATE(446)] = 0, + [SMALL_STATE(447)] = 115, + [SMALL_STATE(448)] = 230, + [SMALL_STATE(449)] = 345, + [SMALL_STATE(450)] = 460, + [SMALL_STATE(451)] = 575, + [SMALL_STATE(452)] = 690, + [SMALL_STATE(453)] = 804, + [SMALL_STATE(454)] = 918, + [SMALL_STATE(455)] = 1029, + [SMALL_STATE(456)] = 1137, + [SMALL_STATE(457)] = 1245, + [SMALL_STATE(458)] = 1353, + [SMALL_STATE(459)] = 1461, + [SMALL_STATE(460)] = 1569, + [SMALL_STATE(461)] = 1677, + [SMALL_STATE(462)] = 1785, + [SMALL_STATE(463)] = 1893, + [SMALL_STATE(464)] = 2001, + [SMALL_STATE(465)] = 2109, + [SMALL_STATE(466)] = 2217, + [SMALL_STATE(467)] = 2325, + [SMALL_STATE(468)] = 2433, + [SMALL_STATE(469)] = 2541, + [SMALL_STATE(470)] = 2649, + [SMALL_STATE(471)] = 2757, + [SMALL_STATE(472)] = 2865, + [SMALL_STATE(473)] = 2973, + [SMALL_STATE(474)] = 3081, + [SMALL_STATE(475)] = 3189, + [SMALL_STATE(476)] = 3297, + [SMALL_STATE(477)] = 3405, + [SMALL_STATE(478)] = 3513, + [SMALL_STATE(479)] = 3621, + [SMALL_STATE(480)] = 3729, + [SMALL_STATE(481)] = 3837, + [SMALL_STATE(482)] = 3945, + [SMALL_STATE(483)] = 4053, + [SMALL_STATE(484)] = 4161, + [SMALL_STATE(485)] = 4269, + [SMALL_STATE(486)] = 4359, + [SMALL_STATE(487)] = 4467, + [SMALL_STATE(488)] = 4575, + [SMALL_STATE(489)] = 4680, + [SMALL_STATE(490)] = 4785, + [SMALL_STATE(491)] = 4890, + [SMALL_STATE(492)] = 4995, + [SMALL_STATE(493)] = 5100, + [SMALL_STATE(494)] = 5205, + [SMALL_STATE(495)] = 5310, + [SMALL_STATE(496)] = 5415, + [SMALL_STATE(497)] = 5520, + [SMALL_STATE(498)] = 5625, + [SMALL_STATE(499)] = 5730, + [SMALL_STATE(500)] = 5835, + [SMALL_STATE(501)] = 5940, + [SMALL_STATE(502)] = 6042, + [SMALL_STATE(503)] = 6144, + [SMALL_STATE(504)] = 6246, + [SMALL_STATE(505)] = 6348, + [SMALL_STATE(506)] = 6450, + [SMALL_STATE(507)] = 6552, + [SMALL_STATE(508)] = 6654, + [SMALL_STATE(509)] = 6756, + [SMALL_STATE(510)] = 6858, + [SMALL_STATE(511)] = 6960, + [SMALL_STATE(512)] = 7062, + [SMALL_STATE(513)] = 7164, + [SMALL_STATE(514)] = 7266, + [SMALL_STATE(515)] = 7368, + [SMALL_STATE(516)] = 7470, + [SMALL_STATE(517)] = 7572, + [SMALL_STATE(518)] = 7674, + [SMALL_STATE(519)] = 7776, + [SMALL_STATE(520)] = 7878, + [SMALL_STATE(521)] = 7980, + [SMALL_STATE(522)] = 8082, + [SMALL_STATE(523)] = 8184, + [SMALL_STATE(524)] = 8286, + [SMALL_STATE(525)] = 8388, + [SMALL_STATE(526)] = 8490, + [SMALL_STATE(527)] = 8592, + [SMALL_STATE(528)] = 8694, + [SMALL_STATE(529)] = 8796, + [SMALL_STATE(530)] = 8898, + [SMALL_STATE(531)] = 9000, + [SMALL_STATE(532)] = 9102, + [SMALL_STATE(533)] = 9204, + [SMALL_STATE(534)] = 9306, + [SMALL_STATE(535)] = 9408, + [SMALL_STATE(536)] = 9510, + [SMALL_STATE(537)] = 9612, + [SMALL_STATE(538)] = 9714, + [SMALL_STATE(539)] = 9816, + [SMALL_STATE(540)] = 9918, + [SMALL_STATE(541)] = 10020, + [SMALL_STATE(542)] = 10122, + [SMALL_STATE(543)] = 10224, + [SMALL_STATE(544)] = 10326, + [SMALL_STATE(545)] = 10428, + [SMALL_STATE(546)] = 10530, + [SMALL_STATE(547)] = 10632, + [SMALL_STATE(548)] = 10734, + [SMALL_STATE(549)] = 10836, + [SMALL_STATE(550)] = 10938, + [SMALL_STATE(551)] = 11040, + [SMALL_STATE(552)] = 11142, + [SMALL_STATE(553)] = 11244, + [SMALL_STATE(554)] = 11346, + [SMALL_STATE(555)] = 11448, + [SMALL_STATE(556)] = 11550, + [SMALL_STATE(557)] = 11652, + [SMALL_STATE(558)] = 11754, + [SMALL_STATE(559)] = 11856, + [SMALL_STATE(560)] = 11958, + [SMALL_STATE(561)] = 12060, + [SMALL_STATE(562)] = 12162, + [SMALL_STATE(563)] = 12264, + [SMALL_STATE(564)] = 12366, + [SMALL_STATE(565)] = 12468, + [SMALL_STATE(566)] = 12570, + [SMALL_STATE(567)] = 12672, + [SMALL_STATE(568)] = 12774, + [SMALL_STATE(569)] = 12876, + [SMALL_STATE(570)] = 12978, + [SMALL_STATE(571)] = 13080, + [SMALL_STATE(572)] = 13182, + [SMALL_STATE(573)] = 13284, + [SMALL_STATE(574)] = 13386, + [SMALL_STATE(575)] = 13488, + [SMALL_STATE(576)] = 13590, + [SMALL_STATE(577)] = 13692, + [SMALL_STATE(578)] = 13794, + [SMALL_STATE(579)] = 13896, + [SMALL_STATE(580)] = 13998, + [SMALL_STATE(581)] = 14100, + [SMALL_STATE(582)] = 14202, + [SMALL_STATE(583)] = 14304, + [SMALL_STATE(584)] = 14406, + [SMALL_STATE(585)] = 14508, + [SMALL_STATE(586)] = 14610, + [SMALL_STATE(587)] = 14712, + [SMALL_STATE(588)] = 14814, + [SMALL_STATE(589)] = 14916, + [SMALL_STATE(590)] = 15018, + [SMALL_STATE(591)] = 15120, + [SMALL_STATE(592)] = 15222, + [SMALL_STATE(593)] = 15324, + [SMALL_STATE(594)] = 15426, + [SMALL_STATE(595)] = 15528, + [SMALL_STATE(596)] = 15630, + [SMALL_STATE(597)] = 15732, + [SMALL_STATE(598)] = 15834, + [SMALL_STATE(599)] = 15936, + [SMALL_STATE(600)] = 16038, + [SMALL_STATE(601)] = 16140, + [SMALL_STATE(602)] = 16242, + [SMALL_STATE(603)] = 16344, + [SMALL_STATE(604)] = 16446, + [SMALL_STATE(605)] = 16548, + [SMALL_STATE(606)] = 16650, + [SMALL_STATE(607)] = 16752, + [SMALL_STATE(608)] = 16854, + [SMALL_STATE(609)] = 16956, + [SMALL_STATE(610)] = 17058, + [SMALL_STATE(611)] = 17160, + [SMALL_STATE(612)] = 17262, + [SMALL_STATE(613)] = 17364, + [SMALL_STATE(614)] = 17466, + [SMALL_STATE(615)] = 17568, + [SMALL_STATE(616)] = 17670, + [SMALL_STATE(617)] = 17741, + [SMALL_STATE(618)] = 17812, + [SMALL_STATE(619)] = 17883, + [SMALL_STATE(620)] = 17951, + [SMALL_STATE(621)] = 18014, + [SMALL_STATE(622)] = 18077, + [SMALL_STATE(623)] = 18139, + [SMALL_STATE(624)] = 18201, + [SMALL_STATE(625)] = 18263, + [SMALL_STATE(626)] = 18325, + [SMALL_STATE(627)] = 18403, + [SMALL_STATE(628)] = 18465, + [SMALL_STATE(629)] = 18527, + [SMALL_STATE(630)] = 18589, + [SMALL_STATE(631)] = 18651, + [SMALL_STATE(632)] = 18713, + [SMALL_STATE(633)] = 18775, + [SMALL_STATE(634)] = 18874, + [SMALL_STATE(635)] = 18973, + [SMALL_STATE(636)] = 19072, + [SMALL_STATE(637)] = 19171, + [SMALL_STATE(638)] = 19270, + [SMALL_STATE(639)] = 19369, + [SMALL_STATE(640)] = 19468, + [SMALL_STATE(641)] = 19567, + [SMALL_STATE(642)] = 19666, + [SMALL_STATE(643)] = 19765, + [SMALL_STATE(644)] = 19864, + [SMALL_STATE(645)] = 19963, + [SMALL_STATE(646)] = 20062, + [SMALL_STATE(647)] = 20163, + [SMALL_STATE(648)] = 20262, + [SMALL_STATE(649)] = 20361, + [SMALL_STATE(650)] = 20460, + [SMALL_STATE(651)] = 20559, + [SMALL_STATE(652)] = 20655, + [SMALL_STATE(653)] = 20751, + [SMALL_STATE(654)] = 20849, + [SMALL_STATE(655)] = 20908, + [SMALL_STATE(656)] = 20967, + [SMALL_STATE(657)] = 21026, + [SMALL_STATE(658)] = 21085, + [SMALL_STATE(659)] = 21154, + [SMALL_STATE(660)] = 21219, + [SMALL_STATE(661)] = 21278, + [SMALL_STATE(662)] = 21336, + [SMALL_STATE(663)] = 21394, + [SMALL_STATE(664)] = 21452, + [SMALL_STATE(665)] = 21510, + [SMALL_STATE(666)] = 21568, + [SMALL_STATE(667)] = 21626, + [SMALL_STATE(668)] = 21684, + [SMALL_STATE(669)] = 21742, + [SMALL_STATE(670)] = 21800, + [SMALL_STATE(671)] = 21858, + [SMALL_STATE(672)] = 21916, + [SMALL_STATE(673)] = 21974, + [SMALL_STATE(674)] = 22032, + [SMALL_STATE(675)] = 22090, + [SMALL_STATE(676)] = 22148, + [SMALL_STATE(677)] = 22206, + [SMALL_STATE(678)] = 22264, + [SMALL_STATE(679)] = 22353, + [SMALL_STATE(680)] = 22414, + [SMALL_STATE(681)] = 22481, + [SMALL_STATE(682)] = 22538, + [SMALL_STATE(683)] = 22595, + [SMALL_STATE(684)] = 22660, + [SMALL_STATE(685)] = 22727, + [SMALL_STATE(686)] = 22794, + [SMALL_STATE(687)] = 22861, + [SMALL_STATE(688)] = 22950, + [SMALL_STATE(689)] = 23007, + [SMALL_STATE(690)] = 23072, + [SMALL_STATE(691)] = 23129, + [SMALL_STATE(692)] = 23218, + [SMALL_STATE(693)] = 23307, + [SMALL_STATE(694)] = 23396, + [SMALL_STATE(695)] = 23485, + [SMALL_STATE(696)] = 23552, + [SMALL_STATE(697)] = 23641, + [SMALL_STATE(698)] = 23730, + [SMALL_STATE(699)] = 23816, + [SMALL_STATE(700)] = 23872, + [SMALL_STATE(701)] = 23928, + [SMALL_STATE(702)] = 23992, + [SMALL_STATE(703)] = 24055, + [SMALL_STATE(704)] = 24118, + [SMALL_STATE(705)] = 24173, + [SMALL_STATE(706)] = 24236, + [SMALL_STATE(707)] = 24299, + [SMALL_STATE(708)] = 24354, + [SMALL_STATE(709)] = 24409, + [SMALL_STATE(710)] = 24472, + [SMALL_STATE(711)] = 24526, + [SMALL_STATE(712)] = 24580, + [SMALL_STATE(713)] = 24650, + [SMALL_STATE(714)] = 24720, + [SMALL_STATE(715)] = 24774, + [SMALL_STATE(716)] = 24844, + [SMALL_STATE(717)] = 24914, + [SMALL_STATE(718)] = 24971, + [SMALL_STATE(719)] = 25028, + [SMALL_STATE(720)] = 25085, + [SMALL_STATE(721)] = 25148, + [SMALL_STATE(722)] = 25205, + [SMALL_STATE(723)] = 25262, + [SMALL_STATE(724)] = 25319, + [SMALL_STATE(725)] = 25376, + [SMALL_STATE(726)] = 25439, + [SMALL_STATE(727)] = 25496, + [SMALL_STATE(728)] = 25559, + [SMALL_STATE(729)] = 25616, + [SMALL_STATE(730)] = 25679, + [SMALL_STATE(731)] = 25736, + [SMALL_STATE(732)] = 25799, + [SMALL_STATE(733)] = 25856, + [SMALL_STATE(734)] = 25919, + [SMALL_STATE(735)] = 25971, + [SMALL_STATE(736)] = 26023, + [SMALL_STATE(737)] = 26075, + [SMALL_STATE(738)] = 26127, + [SMALL_STATE(739)] = 26179, + [SMALL_STATE(740)] = 26239, + [SMALL_STATE(741)] = 26291, + [SMALL_STATE(742)] = 26343, + [SMALL_STATE(743)] = 26395, + [SMALL_STATE(744)] = 26447, + [SMALL_STATE(745)] = 26503, + [SMALL_STATE(746)] = 26589, + [SMALL_STATE(747)] = 26641, + [SMALL_STATE(748)] = 26693, + [SMALL_STATE(749)] = 26779, + [SMALL_STATE(750)] = 26831, + [SMALL_STATE(751)] = 26889, + [SMALL_STATE(752)] = 26945, + [SMALL_STATE(753)] = 27001, + [SMALL_STATE(754)] = 27053, + [SMALL_STATE(755)] = 27139, + [SMALL_STATE(756)] = 27197, + [SMALL_STATE(757)] = 27249, + [SMALL_STATE(758)] = 27315, + [SMALL_STATE(759)] = 27383, + [SMALL_STATE(760)] = 27435, + [SMALL_STATE(761)] = 27507, + [SMALL_STATE(762)] = 27559, + [SMALL_STATE(763)] = 27611, + [SMALL_STATE(764)] = 27663, + [SMALL_STATE(765)] = 27715, + [SMALL_STATE(766)] = 27789, + [SMALL_STATE(767)] = 27865, + [SMALL_STATE(768)] = 27917, + [SMALL_STATE(769)] = 27969, + [SMALL_STATE(770)] = 28025, + [SMALL_STATE(771)] = 28103, + [SMALL_STATE(772)] = 28155, + [SMALL_STATE(773)] = 28207, + [SMALL_STATE(774)] = 28267, + [SMALL_STATE(775)] = 28323, + [SMALL_STATE(776)] = 28403, + [SMALL_STATE(777)] = 28485, + [SMALL_STATE(778)] = 28537, + [SMALL_STATE(779)] = 28601, + [SMALL_STATE(780)] = 28653, + [SMALL_STATE(781)] = 28705, + [SMALL_STATE(782)] = 28757, + [SMALL_STATE(783)] = 28813, + [SMALL_STATE(784)] = 28869, + [SMALL_STATE(785)] = 28940, + [SMALL_STATE(786)] = 29009, + [SMALL_STATE(787)] = 29060, + [SMALL_STATE(788)] = 29129, + [SMALL_STATE(789)] = 29180, + [SMALL_STATE(790)] = 29249, + [SMALL_STATE(791)] = 29300, + [SMALL_STATE(792)] = 29369, + [SMALL_STATE(793)] = 29420, + [SMALL_STATE(794)] = 29475, + [SMALL_STATE(795)] = 29526, + [SMALL_STATE(796)] = 29577, + [SMALL_STATE(797)] = 29628, + [SMALL_STATE(798)] = 29713, + [SMALL_STATE(799)] = 29764, + [SMALL_STATE(800)] = 29815, + [SMALL_STATE(801)] = 29900, + [SMALL_STATE(802)] = 29985, + [SMALL_STATE(803)] = 30048, + [SMALL_STATE(804)] = 30099, + [SMALL_STATE(805)] = 30150, + [SMALL_STATE(806)] = 30201, + [SMALL_STATE(807)] = 30252, + [SMALL_STATE(808)] = 30303, + [SMALL_STATE(809)] = 30354, + [SMALL_STATE(810)] = 30419, + [SMALL_STATE(811)] = 30470, + [SMALL_STATE(812)] = 30537, + [SMALL_STATE(813)] = 30610, + [SMALL_STATE(814)] = 30685, + [SMALL_STATE(815)] = 30762, + [SMALL_STATE(816)] = 30841, + [SMALL_STATE(817)] = 30892, + [SMALL_STATE(818)] = 30943, + [SMALL_STATE(819)] = 31024, + [SMALL_STATE(820)] = 31084, + [SMALL_STATE(821)] = 31138, + [SMALL_STATE(822)] = 31224, + [SMALL_STATE(823)] = 31310, + [SMALL_STATE(824)] = 31365, + [SMALL_STATE(825)] = 31420, + [SMALL_STATE(826)] = 31477, + [SMALL_STATE(827)] = 31525, + [SMALL_STATE(828)] = 31573, + [SMALL_STATE(829)] = 31620, + [SMALL_STATE(830)] = 31667, + [SMALL_STATE(831)] = 31726, + [SMALL_STATE(832)] = 31809, + [SMALL_STATE(833)] = 31860, + [SMALL_STATE(834)] = 31907, + [SMALL_STATE(835)] = 31954, + [SMALL_STATE(836)] = 32001, + [SMALL_STATE(837)] = 32048, + [SMALL_STATE(838)] = 32131, + [SMALL_STATE(839)] = 32190, + [SMALL_STATE(840)] = 32251, + [SMALL_STATE(841)] = 32334, + [SMALL_STATE(842)] = 32393, + [SMALL_STATE(843)] = 32472, + [SMALL_STATE(844)] = 32549, + [SMALL_STATE(845)] = 32596, + [SMALL_STATE(846)] = 32671, + [SMALL_STATE(847)] = 32744, + [SMALL_STATE(848)] = 32791, + [SMALL_STATE(849)] = 32862, + [SMALL_STATE(850)] = 32931, + [SMALL_STATE(851)] = 32996, + [SMALL_STATE(852)] = 33043, + [SMALL_STATE(853)] = 33090, + [SMALL_STATE(854)] = 33137, + [SMALL_STATE(855)] = 33184, + [SMALL_STATE(856)] = 33231, + [SMALL_STATE(857)] = 33278, + [SMALL_STATE(858)] = 33325, + [SMALL_STATE(859)] = 33372, + [SMALL_STATE(860)] = 33419, + [SMALL_STATE(861)] = 33470, + [SMALL_STATE(862)] = 33517, + [SMALL_STATE(863)] = 33564, + [SMALL_STATE(864)] = 33611, + [SMALL_STATE(865)] = 33662, + [SMALL_STATE(866)] = 33713, + [SMALL_STATE(867)] = 33764, + [SMALL_STATE(868)] = 33811, + [SMALL_STATE(869)] = 33874, + [SMALL_STATE(870)] = 33921, + [SMALL_STATE(871)] = 33980, + [SMALL_STATE(872)] = 34037, + [SMALL_STATE(873)] = 34084, + [SMALL_STATE(874)] = 34131, + [SMALL_STATE(875)] = 34178, + [SMALL_STATE(876)] = 34225, + [SMALL_STATE(877)] = 34272, + [SMALL_STATE(878)] = 34319, + [SMALL_STATE(879)] = 34370, + [SMALL_STATE(880)] = 34417, + [SMALL_STATE(881)] = 34464, + [SMALL_STATE(882)] = 34511, + [SMALL_STATE(883)] = 34558, + [SMALL_STATE(884)] = 34605, + [SMALL_STATE(885)] = 34656, + [SMALL_STATE(886)] = 34703, + [SMALL_STATE(887)] = 34750, + [SMALL_STATE(888)] = 34797, + [SMALL_STATE(889)] = 34856, + [SMALL_STATE(890)] = 34902, + [SMALL_STATE(891)] = 34948, + [SMALL_STATE(892)] = 34998, + [SMALL_STATE(893)] = 35044, + [SMALL_STATE(894)] = 35090, + [SMALL_STATE(895)] = 35166, + [SMALL_STATE(896)] = 35242, + [SMALL_STATE(897)] = 35318, + [SMALL_STATE(898)] = 35394, + [SMALL_STATE(899)] = 35445, + [SMALL_STATE(900)] = 35490, + [SMALL_STATE(901)] = 35547, + [SMALL_STATE(902)] = 35591, + [SMALL_STATE(903)] = 35635, + [SMALL_STATE(904)] = 35679, + [SMALL_STATE(905)] = 35723, + [SMALL_STATE(906)] = 35767, + [SMALL_STATE(907)] = 35811, + [SMALL_STATE(908)] = 35855, + [SMALL_STATE(909)] = 35899, + [SMALL_STATE(910)] = 35953, + [SMALL_STATE(911)] = 36005, + [SMALL_STATE(912)] = 36049, + [SMALL_STATE(913)] = 36093, + [SMALL_STATE(914)] = 36135, + [SMALL_STATE(915)] = 36205, + [SMALL_STATE(916)] = 36247, + [SMALL_STATE(917)] = 36289, + [SMALL_STATE(918)] = 36331, + [SMALL_STATE(919)] = 36373, + [SMALL_STATE(920)] = 36445, + [SMALL_STATE(921)] = 36487, + [SMALL_STATE(922)] = 36559, + [SMALL_STATE(923)] = 36601, + [SMALL_STATE(924)] = 36643, + [SMALL_STATE(925)] = 36685, + [SMALL_STATE(926)] = 36727, + [SMALL_STATE(927)] = 36771, + [SMALL_STATE(928)] = 36815, + [SMALL_STATE(929)] = 36857, + [SMALL_STATE(930)] = 36899, + [SMALL_STATE(931)] = 36943, + [SMALL_STATE(932)] = 37013, + [SMALL_STATE(933)] = 37055, + [SMALL_STATE(934)] = 37099, + [SMALL_STATE(935)] = 37166, + [SMALL_STATE(936)] = 37233, + [SMALL_STATE(937)] = 37310, + [SMALL_STATE(938)] = 37377, + [SMALL_STATE(939)] = 37444, + [SMALL_STATE(940)] = 37521, + [SMALL_STATE(941)] = 37578, + [SMALL_STATE(942)] = 37655, + [SMALL_STATE(943)] = 37732, + [SMALL_STATE(944)] = 37799, + [SMALL_STATE(945)] = 37862, + [SMALL_STATE(946)] = 37935, + [SMALL_STATE(947)] = 37990, + [SMALL_STATE(948)] = 38061, + [SMALL_STATE(949)] = 38130, + [SMALL_STATE(950)] = 38189, + [SMALL_STATE(951)] = 38256, + [SMALL_STATE(952)] = 38321, + [SMALL_STATE(953)] = 38388, + [SMALL_STATE(954)] = 38455, + [SMALL_STATE(955)] = 38522, + [SMALL_STATE(956)] = 38576, + [SMALL_STATE(957)] = 38646, + [SMALL_STATE(958)] = 38704, + [SMALL_STATE(959)] = 38770, + [SMALL_STATE(960)] = 38844, + [SMALL_STATE(961)] = 38908, + [SMALL_STATE(962)] = 38982, + [SMALL_STATE(963)] = 39030, + [SMALL_STATE(964)] = 39104, + [SMALL_STATE(965)] = 39160, + [SMALL_STATE(966)] = 39228, + [SMALL_STATE(967)] = 39296, + [SMALL_STATE(968)] = 39358, + [SMALL_STATE(969)] = 39421, + [SMALL_STATE(970)] = 39484, + [SMALL_STATE(971)] = 39547, + [SMALL_STATE(972)] = 39610, + [SMALL_STATE(973)] = 39673, + [SMALL_STATE(974)] = 39736, + [SMALL_STATE(975)] = 39799, + [SMALL_STATE(976)] = 39862, + [SMALL_STATE(977)] = 39925, + [SMALL_STATE(978)] = 39988, + [SMALL_STATE(979)] = 40051, + [SMALL_STATE(980)] = 40114, + [SMALL_STATE(981)] = 40177, + [SMALL_STATE(982)] = 40215, + [SMALL_STATE(983)] = 40275, + [SMALL_STATE(984)] = 40335, + [SMALL_STATE(985)] = 40373, + [SMALL_STATE(986)] = 40419, + [SMALL_STATE(987)] = 40457, + [SMALL_STATE(988)] = 40517, + [SMALL_STATE(989)] = 40577, + [SMALL_STATE(990)] = 40637, + [SMALL_STATE(991)] = 40697, + [SMALL_STATE(992)] = 40735, + [SMALL_STATE(993)] = 40809, + [SMALL_STATE(994)] = 40884, + [SMALL_STATE(995)] = 40921, + [SMALL_STATE(996)] = 40996, + [SMALL_STATE(997)] = 41071, + [SMALL_STATE(998)] = 41146, + [SMALL_STATE(999)] = 41221, + [SMALL_STATE(1000)] = 41258, + [SMALL_STATE(1001)] = 41329, + [SMALL_STATE(1002)] = 41404, + [SMALL_STATE(1003)] = 41476, + [SMALL_STATE(1004)] = 41520, + [SMALL_STATE(1005)] = 41592, + [SMALL_STATE(1006)] = 41664, + [SMALL_STATE(1007)] = 41736, + [SMALL_STATE(1008)] = 41806, + [SMALL_STATE(1009)] = 41876, + [SMALL_STATE(1010)] = 41922, + [SMALL_STATE(1011)] = 41992, + [SMALL_STATE(1012)] = 42064, + [SMALL_STATE(1013)] = 42116, + [SMALL_STATE(1014)] = 42188, + [SMALL_STATE(1015)] = 42260, + [SMALL_STATE(1016)] = 42330, + [SMALL_STATE(1017)] = 42386, + [SMALL_STATE(1018)] = 42458, + [SMALL_STATE(1019)] = 42530, + [SMALL_STATE(1020)] = 42602, + [SMALL_STATE(1021)] = 42674, + [SMALL_STATE(1022)] = 42746, + [SMALL_STATE(1023)] = 42818, + [SMALL_STATE(1024)] = 42890, + [SMALL_STATE(1025)] = 42962, + [SMALL_STATE(1026)] = 43034, + [SMALL_STATE(1027)] = 43100, + [SMALL_STATE(1028)] = 43170, + [SMALL_STATE(1029)] = 43242, + [SMALL_STATE(1030)] = 43314, + [SMALL_STATE(1031)] = 43374, + [SMALL_STATE(1032)] = 43444, + [SMALL_STATE(1033)] = 43516, + [SMALL_STATE(1034)] = 43588, + [SMALL_STATE(1035)] = 43660, + [SMALL_STATE(1036)] = 43732, + [SMALL_STATE(1037)] = 43802, + [SMALL_STATE(1038)] = 43864, + [SMALL_STATE(1039)] = 43938, + [SMALL_STATE(1040)] = 44010, + [SMALL_STATE(1041)] = 44078, + [SMALL_STATE(1042)] = 44150, + [SMALL_STATE(1043)] = 44214, + [SMALL_STATE(1044)] = 44286, + [SMALL_STATE(1045)] = 44358, + [SMALL_STATE(1046)] = 44412, + [SMALL_STATE(1047)] = 44484, + [SMALL_STATE(1048)] = 44554, + [SMALL_STATE(1049)] = 44620, + [SMALL_STATE(1050)] = 44692, + [SMALL_STATE(1051)] = 44764, + [SMALL_STATE(1052)] = 44833, + [SMALL_STATE(1053)] = 44902, + [SMALL_STATE(1054)] = 44971, + [SMALL_STATE(1055)] = 45040, + [SMALL_STATE(1056)] = 45109, + [SMALL_STATE(1057)] = 45178, + [SMALL_STATE(1058)] = 45247, + [SMALL_STATE(1059)] = 45316, + [SMALL_STATE(1060)] = 45385, + [SMALL_STATE(1061)] = 45454, + [SMALL_STATE(1062)] = 45523, + [SMALL_STATE(1063)] = 45592, + [SMALL_STATE(1064)] = 45661, + [SMALL_STATE(1065)] = 45730, + [SMALL_STATE(1066)] = 45799, + [SMALL_STATE(1067)] = 45868, + [SMALL_STATE(1068)] = 45937, + [SMALL_STATE(1069)] = 46006, + [SMALL_STATE(1070)] = 46075, + [SMALL_STATE(1071)] = 46144, + [SMALL_STATE(1072)] = 46213, + [SMALL_STATE(1073)] = 46282, + [SMALL_STATE(1074)] = 46336, + [SMALL_STATE(1075)] = 46390, + [SMALL_STATE(1076)] = 46444, + [SMALL_STATE(1077)] = 46480, + [SMALL_STATE(1078)] = 46534, + [SMALL_STATE(1079)] = 46600, + [SMALL_STATE(1080)] = 46638, + [SMALL_STATE(1081)] = 46676, + [SMALL_STATE(1082)] = 46714, + [SMALL_STATE(1083)] = 46768, + [SMALL_STATE(1084)] = 46822, + [SMALL_STATE(1085)] = 46873, + [SMALL_STATE(1086)] = 46924, + [SMALL_STATE(1087)] = 46975, + [SMALL_STATE(1088)] = 47026, + [SMALL_STATE(1089)] = 47077, + [SMALL_STATE(1090)] = 47128, + [SMALL_STATE(1091)] = 47166, + [SMALL_STATE(1092)] = 47206, + [SMALL_STATE(1093)] = 47245, + [SMALL_STATE(1094)] = 47284, + [SMALL_STATE(1095)] = 47333, + [SMALL_STATE(1096)] = 47372, + [SMALL_STATE(1097)] = 47411, + [SMALL_STATE(1098)] = 47445, + [SMALL_STATE(1099)] = 47499, + [SMALL_STATE(1100)] = 47553, + [SMALL_STATE(1101)] = 47607, + [SMALL_STATE(1102)] = 47661, + [SMALL_STATE(1103)] = 47716, + [SMALL_STATE(1104)] = 47767, + [SMALL_STATE(1105)] = 47802, + [SMALL_STATE(1106)] = 47835, + [SMALL_STATE(1107)] = 47886, + [SMALL_STATE(1108)] = 47937, + [SMALL_STATE(1109)] = 47980, + [SMALL_STATE(1110)] = 48031, + [SMALL_STATE(1111)] = 48074, + [SMALL_STATE(1112)] = 48125, + [SMALL_STATE(1113)] = 48176, + [SMALL_STATE(1114)] = 48219, + [SMALL_STATE(1115)] = 48252, + [SMALL_STATE(1116)] = 48303, + [SMALL_STATE(1117)] = 48358, + [SMALL_STATE(1118)] = 48391, + [SMALL_STATE(1119)] = 48442, + [SMALL_STATE(1120)] = 48493, + [SMALL_STATE(1121)] = 48544, + [SMALL_STATE(1122)] = 48581, + [SMALL_STATE(1123)] = 48614, + [SMALL_STATE(1124)] = 48647, + [SMALL_STATE(1125)] = 48680, + [SMALL_STATE(1126)] = 48731, + [SMALL_STATE(1127)] = 48764, + [SMALL_STATE(1128)] = 48797, + [SMALL_STATE(1129)] = 48830, + [SMALL_STATE(1130)] = 48885, + [SMALL_STATE(1131)] = 48925, + [SMALL_STATE(1132)] = 48965, + [SMALL_STATE(1133)] = 49011, + [SMALL_STATE(1134)] = 49059, + [SMALL_STATE(1135)] = 49103, + [SMALL_STATE(1136)] = 49131, + [SMALL_STATE(1137)] = 49173, + [SMALL_STATE(1138)] = 49213, + [SMALL_STATE(1139)] = 49241, + [SMALL_STATE(1140)] = 49289, + [SMALL_STATE(1141)] = 49329, + [SMALL_STATE(1142)] = 49361, + [SMALL_STATE(1143)] = 49401, + [SMALL_STATE(1144)] = 49429, + [SMALL_STATE(1145)] = 49465, + [SMALL_STATE(1146)] = 49499, + [SMALL_STATE(1147)] = 49549, + [SMALL_STATE(1148)] = 49589, + [SMALL_STATE(1149)] = 49629, + [SMALL_STATE(1150)] = 49669, + [SMALL_STATE(1151)] = 49697, + [SMALL_STATE(1152)] = 49737, + [SMALL_STATE(1153)] = 49777, + [SMALL_STATE(1154)] = 49817, + [SMALL_STATE(1155)] = 49857, + [SMALL_STATE(1156)] = 49897, + [SMALL_STATE(1157)] = 49937, + [SMALL_STATE(1158)] = 49977, + [SMALL_STATE(1159)] = 50017, + [SMALL_STATE(1160)] = 50057, + [SMALL_STATE(1161)] = 50097, + [SMALL_STATE(1162)] = 50143, + [SMALL_STATE(1163)] = 50183, + [SMALL_STATE(1164)] = 50223, + [SMALL_STATE(1165)] = 50263, + [SMALL_STATE(1166)] = 50303, + [SMALL_STATE(1167)] = 50343, + [SMALL_STATE(1168)] = 50383, + [SMALL_STATE(1169)] = 50423, + [SMALL_STATE(1170)] = 50463, + [SMALL_STATE(1171)] = 50503, + [SMALL_STATE(1172)] = 50543, + [SMALL_STATE(1173)] = 50583, + [SMALL_STATE(1174)] = 50611, + [SMALL_STATE(1175)] = 50651, + [SMALL_STATE(1176)] = 50691, + [SMALL_STATE(1177)] = 50731, + [SMALL_STATE(1178)] = 50771, + [SMALL_STATE(1179)] = 50811, + [SMALL_STATE(1180)] = 50851, + [SMALL_STATE(1181)] = 50891, + [SMALL_STATE(1182)] = 50931, + [SMALL_STATE(1183)] = 50971, + [SMALL_STATE(1184)] = 50999, + [SMALL_STATE(1185)] = 51039, + [SMALL_STATE(1186)] = 51079, + [SMALL_STATE(1187)] = 51106, + [SMALL_STATE(1188)] = 51143, + [SMALL_STATE(1189)] = 51170, + [SMALL_STATE(1190)] = 51197, + [SMALL_STATE(1191)] = 51242, + [SMALL_STATE(1192)] = 51273, + [SMALL_STATE(1193)] = 51318, + [SMALL_STATE(1194)] = 51363, + [SMALL_STATE(1195)] = 51408, + [SMALL_STATE(1196)] = 51435, + [SMALL_STATE(1197)] = 51462, + [SMALL_STATE(1198)] = 51495, + [SMALL_STATE(1199)] = 51540, + [SMALL_STATE(1200)] = 51567, + [SMALL_STATE(1201)] = 51594, + [SMALL_STATE(1202)] = 51629, + [SMALL_STATE(1203)] = 51674, + [SMALL_STATE(1204)] = 51723, + [SMALL_STATE(1205)] = 51768, + [SMALL_STATE(1206)] = 51795, + [SMALL_STATE(1207)] = 51840, + [SMALL_STATE(1208)] = 51881, + [SMALL_STATE(1209)] = 51926, + [SMALL_STATE(1210)] = 51965, + [SMALL_STATE(1211)] = 52010, + [SMALL_STATE(1212)] = 52053, + [SMALL_STATE(1213)] = 52080, + [SMALL_STATE(1214)] = 52107, + [SMALL_STATE(1215)] = 52144, + [SMALL_STATE(1216)] = 52189, + [SMALL_STATE(1217)] = 52234, + [SMALL_STATE(1218)] = 52279, + [SMALL_STATE(1219)] = 52322, + [SMALL_STATE(1220)] = 52365, + [SMALL_STATE(1221)] = 52408, + [SMALL_STATE(1222)] = 52437, + [SMALL_STATE(1223)] = 52482, + [SMALL_STATE(1224)] = 52531, + [SMALL_STATE(1225)] = 52576, + [SMALL_STATE(1226)] = 52619, + [SMALL_STATE(1227)] = 52659, + [SMALL_STATE(1228)] = 52699, + [SMALL_STATE(1229)] = 52739, + [SMALL_STATE(1230)] = 52779, + [SMALL_STATE(1231)] = 52819, + [SMALL_STATE(1232)] = 52863, + [SMALL_STATE(1233)] = 52903, + [SMALL_STATE(1234)] = 52944, + [SMALL_STATE(1235)] = 52985, + [SMALL_STATE(1236)] = 53026, + [SMALL_STATE(1237)] = 53067, + [SMALL_STATE(1238)] = 53108, + [SMALL_STATE(1239)] = 53149, + [SMALL_STATE(1240)] = 53190, + [SMALL_STATE(1241)] = 53231, + [SMALL_STATE(1242)] = 53269, + [SMALL_STATE(1243)] = 53303, + [SMALL_STATE(1244)] = 53341, + [SMALL_STATE(1245)] = 53381, + [SMALL_STATE(1246)] = 53418, + [SMALL_STATE(1247)] = 53447, + [SMALL_STATE(1248)] = 53488, + [SMALL_STATE(1249)] = 53517, + [SMALL_STATE(1250)] = 53546, + [SMALL_STATE(1251)] = 53585, + [SMALL_STATE(1252)] = 53624, + [SMALL_STATE(1253)] = 53663, + [SMALL_STATE(1254)] = 53704, + [SMALL_STATE(1255)] = 53743, + [SMALL_STATE(1256)] = 53772, + [SMALL_STATE(1257)] = 53813, + [SMALL_STATE(1258)] = 53839, + [SMALL_STATE(1259)] = 53876, + [SMALL_STATE(1260)] = 53905, + [SMALL_STATE(1261)] = 53942, + [SMALL_STATE(1262)] = 53971, + [SMALL_STATE(1263)] = 54004, + [SMALL_STATE(1264)] = 54025, + [SMALL_STATE(1265)] = 54054, + [SMALL_STATE(1266)] = 54083, + [SMALL_STATE(1267)] = 54120, + [SMALL_STATE(1268)] = 54157, + [SMALL_STATE(1269)] = 54194, + [SMALL_STATE(1270)] = 54231, + [SMALL_STATE(1271)] = 54256, + [SMALL_STATE(1272)] = 54293, + [SMALL_STATE(1273)] = 54330, + [SMALL_STATE(1274)] = 54351, + [SMALL_STATE(1275)] = 54388, + [SMALL_STATE(1276)] = 54425, + [SMALL_STATE(1277)] = 54458, + [SMALL_STATE(1278)] = 54495, + [SMALL_STATE(1279)] = 54516, + [SMALL_STATE(1280)] = 54552, + [SMALL_STATE(1281)] = 54576, + [SMALL_STATE(1282)] = 54605, + [SMALL_STATE(1283)] = 54636, + [SMALL_STATE(1284)] = 54665, + [SMALL_STATE(1285)] = 54694, + [SMALL_STATE(1286)] = 54719, + [SMALL_STATE(1287)] = 54750, + [SMALL_STATE(1288)] = 54781, + [SMALL_STATE(1289)] = 54810, + [SMALL_STATE(1290)] = 54839, + [SMALL_STATE(1291)] = 54866, + [SMALL_STATE(1292)] = 54893, + [SMALL_STATE(1293)] = 54922, + [SMALL_STATE(1294)] = 54951, + [SMALL_STATE(1295)] = 54980, + [SMALL_STATE(1296)] = 55007, + [SMALL_STATE(1297)] = 55038, + [SMALL_STATE(1298)] = 55069, + [SMALL_STATE(1299)] = 55098, + [SMALL_STATE(1300)] = 55127, + [SMALL_STATE(1301)] = 55156, + [SMALL_STATE(1302)] = 55187, + [SMALL_STATE(1303)] = 55216, + [SMALL_STATE(1304)] = 55243, + [SMALL_STATE(1305)] = 55274, + [SMALL_STATE(1306)] = 55303, + [SMALL_STATE(1307)] = 55334, + [SMALL_STATE(1308)] = 55363, + [SMALL_STATE(1309)] = 55394, + [SMALL_STATE(1310)] = 55419, + [SMALL_STATE(1311)] = 55445, + [SMALL_STATE(1312)] = 55469, + [SMALL_STATE(1313)] = 55487, + [SMALL_STATE(1314)] = 55509, + [SMALL_STATE(1315)] = 55527, + [SMALL_STATE(1316)] = 55545, + [SMALL_STATE(1317)] = 55563, + [SMALL_STATE(1318)] = 55589, + [SMALL_STATE(1319)] = 55621, + [SMALL_STATE(1320)] = 55653, + [SMALL_STATE(1321)] = 55671, + [SMALL_STATE(1322)] = 55697, + [SMALL_STATE(1323)] = 55715, + [SMALL_STATE(1324)] = 55741, + [SMALL_STATE(1325)] = 55773, + [SMALL_STATE(1326)] = 55803, + [SMALL_STATE(1327)] = 55835, + [SMALL_STATE(1328)] = 55859, + [SMALL_STATE(1329)] = 55877, + [SMALL_STATE(1330)] = 55898, + [SMALL_STATE(1331)] = 55927, + [SMALL_STATE(1332)] = 55948, + [SMALL_STATE(1333)] = 55977, + [SMALL_STATE(1334)] = 55998, + [SMALL_STATE(1335)] = 56027, + [SMALL_STATE(1336)] = 56056, + [SMALL_STATE(1337)] = 56077, + [SMALL_STATE(1338)] = 56098, + [SMALL_STATE(1339)] = 56119, + [SMALL_STATE(1340)] = 56148, + [SMALL_STATE(1341)] = 56173, + [SMALL_STATE(1342)] = 56194, + [SMALL_STATE(1343)] = 56215, + [SMALL_STATE(1344)] = 56244, + [SMALL_STATE(1345)] = 56273, + [SMALL_STATE(1346)] = 56298, + [SMALL_STATE(1347)] = 56327, + [SMALL_STATE(1348)] = 56346, + [SMALL_STATE(1349)] = 56372, + [SMALL_STATE(1350)] = 56388, + [SMALL_STATE(1351)] = 56414, + [SMALL_STATE(1352)] = 56440, + [SMALL_STATE(1353)] = 56456, + [SMALL_STATE(1354)] = 56472, + [SMALL_STATE(1355)] = 56492, + [SMALL_STATE(1356)] = 56518, + [SMALL_STATE(1357)] = 56544, + [SMALL_STATE(1358)] = 56560, + [SMALL_STATE(1359)] = 56586, + [SMALL_STATE(1360)] = 56606, + [SMALL_STATE(1361)] = 56628, + [SMALL_STATE(1362)] = 56644, + [SMALL_STATE(1363)] = 56670, + [SMALL_STATE(1364)] = 56694, + [SMALL_STATE(1365)] = 56710, + [SMALL_STATE(1366)] = 56736, + [SMALL_STATE(1367)] = 56762, + [SMALL_STATE(1368)] = 56778, + [SMALL_STATE(1369)] = 56798, + [SMALL_STATE(1370)] = 56814, + [SMALL_STATE(1371)] = 56830, + [SMALL_STATE(1372)] = 56856, + [SMALL_STATE(1373)] = 56874, + [SMALL_STATE(1374)] = 56900, + [SMALL_STATE(1375)] = 56926, + [SMALL_STATE(1376)] = 56941, + [SMALL_STATE(1377)] = 56964, + [SMALL_STATE(1378)] = 56979, + [SMALL_STATE(1379)] = 56996, + [SMALL_STATE(1380)] = 57011, + [SMALL_STATE(1381)] = 57026, + [SMALL_STATE(1382)] = 57049, + [SMALL_STATE(1383)] = 57064, + [SMALL_STATE(1384)] = 57079, + [SMALL_STATE(1385)] = 57098, + [SMALL_STATE(1386)] = 57113, + [SMALL_STATE(1387)] = 57136, + [SMALL_STATE(1388)] = 57155, + [SMALL_STATE(1389)] = 57172, + [SMALL_STATE(1390)] = 57195, + [SMALL_STATE(1391)] = 57212, + [SMALL_STATE(1392)] = 57227, + [SMALL_STATE(1393)] = 57242, + [SMALL_STATE(1394)] = 57265, + [SMALL_STATE(1395)] = 57288, + [SMALL_STATE(1396)] = 57303, + [SMALL_STATE(1397)] = 57328, + [SMALL_STATE(1398)] = 57351, + [SMALL_STATE(1399)] = 57368, + [SMALL_STATE(1400)] = 57382, + [SMALL_STATE(1401)] = 57402, + [SMALL_STATE(1402)] = 57422, + [SMALL_STATE(1403)] = 57440, + [SMALL_STATE(1404)] = 57456, + [SMALL_STATE(1405)] = 57470, + [SMALL_STATE(1406)] = 57484, + [SMALL_STATE(1407)] = 57498, + [SMALL_STATE(1408)] = 57512, + [SMALL_STATE(1409)] = 57528, + [SMALL_STATE(1410)] = 57542, + [SMALL_STATE(1411)] = 57562, + [SMALL_STATE(1412)] = 57576, + [SMALL_STATE(1413)] = 57594, + [SMALL_STATE(1414)] = 57612, + [SMALL_STATE(1415)] = 57630, + [SMALL_STATE(1416)] = 57644, + [SMALL_STATE(1417)] = 57658, + [SMALL_STATE(1418)] = 57674, + [SMALL_STATE(1419)] = 57694, + [SMALL_STATE(1420)] = 57712, + [SMALL_STATE(1421)] = 57726, + [SMALL_STATE(1422)] = 57746, + [SMALL_STATE(1423)] = 57766, + [SMALL_STATE(1424)] = 57786, + [SMALL_STATE(1425)] = 57806, + [SMALL_STATE(1426)] = 57824, + [SMALL_STATE(1427)] = 57838, + [SMALL_STATE(1428)] = 57858, + [SMALL_STATE(1429)] = 57878, + [SMALL_STATE(1430)] = 57898, + [SMALL_STATE(1431)] = 57916, + [SMALL_STATE(1432)] = 57936, + [SMALL_STATE(1433)] = 57950, + [SMALL_STATE(1434)] = 57964, + [SMALL_STATE(1435)] = 57984, + [SMALL_STATE(1436)] = 57998, + [SMALL_STATE(1437)] = 58012, + [SMALL_STATE(1438)] = 58023, + [SMALL_STATE(1439)] = 58034, + [SMALL_STATE(1440)] = 58045, + [SMALL_STATE(1441)] = 58056, + [SMALL_STATE(1442)] = 58071, + [SMALL_STATE(1443)] = 58082, + [SMALL_STATE(1444)] = 58093, + [SMALL_STATE(1445)] = 58112, + [SMALL_STATE(1446)] = 58123, + [SMALL_STATE(1447)] = 58134, + [SMALL_STATE(1448)] = 58145, + [SMALL_STATE(1449)] = 58156, + [SMALL_STATE(1450)] = 58175, + [SMALL_STATE(1451)] = 58194, + [SMALL_STATE(1452)] = 58211, + [SMALL_STATE(1453)] = 58222, + [SMALL_STATE(1454)] = 58237, + [SMALL_STATE(1455)] = 58248, + [SMALL_STATE(1456)] = 58259, + [SMALL_STATE(1457)] = 58276, + [SMALL_STATE(1458)] = 58290, + [SMALL_STATE(1459)] = 58300, + [SMALL_STATE(1460)] = 58314, + [SMALL_STATE(1461)] = 58328, + [SMALL_STATE(1462)] = 58342, + [SMALL_STATE(1463)] = 58356, + [SMALL_STATE(1464)] = 58370, + [SMALL_STATE(1465)] = 58384, + [SMALL_STATE(1466)] = 58398, + [SMALL_STATE(1467)] = 58412, + [SMALL_STATE(1468)] = 58426, + [SMALL_STATE(1469)] = 58440, + [SMALL_STATE(1470)] = 58454, + [SMALL_STATE(1471)] = 58468, + [SMALL_STATE(1472)] = 58484, + [SMALL_STATE(1473)] = 58498, + [SMALL_STATE(1474)] = 58514, + [SMALL_STATE(1475)] = 58528, + [SMALL_STATE(1476)] = 58542, + [SMALL_STATE(1477)] = 58556, + [SMALL_STATE(1478)] = 58572, + [SMALL_STATE(1479)] = 58586, + [SMALL_STATE(1480)] = 58602, + [SMALL_STATE(1481)] = 58616, + [SMALL_STATE(1482)] = 58630, + [SMALL_STATE(1483)] = 58644, + [SMALL_STATE(1484)] = 58658, + [SMALL_STATE(1485)] = 58672, + [SMALL_STATE(1486)] = 58688, + [SMALL_STATE(1487)] = 58702, + [SMALL_STATE(1488)] = 58716, + [SMALL_STATE(1489)] = 58730, + [SMALL_STATE(1490)] = 58746, + [SMALL_STATE(1491)] = 58760, + [SMALL_STATE(1492)] = 58774, + [SMALL_STATE(1493)] = 58790, + [SMALL_STATE(1494)] = 58804, + [SMALL_STATE(1495)] = 58818, + [SMALL_STATE(1496)] = 58834, + [SMALL_STATE(1497)] = 58848, + [SMALL_STATE(1498)] = 58864, + [SMALL_STATE(1499)] = 58878, + [SMALL_STATE(1500)] = 58892, + [SMALL_STATE(1501)] = 58906, + [SMALL_STATE(1502)] = 58922, + [SMALL_STATE(1503)] = 58938, + [SMALL_STATE(1504)] = 58954, + [SMALL_STATE(1505)] = 58968, + [SMALL_STATE(1506)] = 58982, + [SMALL_STATE(1507)] = 58998, + [SMALL_STATE(1508)] = 59014, + [SMALL_STATE(1509)] = 59028, + [SMALL_STATE(1510)] = 59042, + [SMALL_STATE(1511)] = 59058, + [SMALL_STATE(1512)] = 59068, + [SMALL_STATE(1513)] = 59082, + [SMALL_STATE(1514)] = 59096, + [SMALL_STATE(1515)] = 59112, + [SMALL_STATE(1516)] = 59126, + [SMALL_STATE(1517)] = 59140, + [SMALL_STATE(1518)] = 59156, + [SMALL_STATE(1519)] = 59170, + [SMALL_STATE(1520)] = 59186, + [SMALL_STATE(1521)] = 59202, + [SMALL_STATE(1522)] = 59215, + [SMALL_STATE(1523)] = 59224, + [SMALL_STATE(1524)] = 59233, + [SMALL_STATE(1525)] = 59246, + [SMALL_STATE(1526)] = 59255, + [SMALL_STATE(1527)] = 59268, + [SMALL_STATE(1528)] = 59281, + [SMALL_STATE(1529)] = 59294, + [SMALL_STATE(1530)] = 59307, + [SMALL_STATE(1531)] = 59320, + [SMALL_STATE(1532)] = 59329, + [SMALL_STATE(1533)] = 59342, + [SMALL_STATE(1534)] = 59355, + [SMALL_STATE(1535)] = 59368, + [SMALL_STATE(1536)] = 59381, + [SMALL_STATE(1537)] = 59394, + [SMALL_STATE(1538)] = 59407, + [SMALL_STATE(1539)] = 59420, + [SMALL_STATE(1540)] = 59431, + [SMALL_STATE(1541)] = 59442, + [SMALL_STATE(1542)] = 59455, + [SMALL_STATE(1543)] = 59468, + [SMALL_STATE(1544)] = 59481, + [SMALL_STATE(1545)] = 59494, + [SMALL_STATE(1546)] = 59507, + [SMALL_STATE(1547)] = 59520, + [SMALL_STATE(1548)] = 59533, + [SMALL_STATE(1549)] = 59546, + [SMALL_STATE(1550)] = 59559, + [SMALL_STATE(1551)] = 59572, + [SMALL_STATE(1552)] = 59585, + [SMALL_STATE(1553)] = 59598, + [SMALL_STATE(1554)] = 59611, + [SMALL_STATE(1555)] = 59624, + [SMALL_STATE(1556)] = 59637, + [SMALL_STATE(1557)] = 59650, + [SMALL_STATE(1558)] = 59663, + [SMALL_STATE(1559)] = 59676, + [SMALL_STATE(1560)] = 59685, + [SMALL_STATE(1561)] = 59698, + [SMALL_STATE(1562)] = 59711, + [SMALL_STATE(1563)] = 59724, + [SMALL_STATE(1564)] = 59737, + [SMALL_STATE(1565)] = 59750, + [SMALL_STATE(1566)] = 59763, + [SMALL_STATE(1567)] = 59776, + [SMALL_STATE(1568)] = 59789, + [SMALL_STATE(1569)] = 59802, + [SMALL_STATE(1570)] = 59815, + [SMALL_STATE(1571)] = 59828, + [SMALL_STATE(1572)] = 59841, + [SMALL_STATE(1573)] = 59852, + [SMALL_STATE(1574)] = 59865, + [SMALL_STATE(1575)] = 59878, + [SMALL_STATE(1576)] = 59891, + [SMALL_STATE(1577)] = 59900, + [SMALL_STATE(1578)] = 59913, + [SMALL_STATE(1579)] = 59926, + [SMALL_STATE(1580)] = 59939, + [SMALL_STATE(1581)] = 59952, + [SMALL_STATE(1582)] = 59965, + [SMALL_STATE(1583)] = 59978, + [SMALL_STATE(1584)] = 59987, + [SMALL_STATE(1585)] = 60000, + [SMALL_STATE(1586)] = 60013, + [SMALL_STATE(1587)] = 60026, + [SMALL_STATE(1588)] = 60039, + [SMALL_STATE(1589)] = 60052, + [SMALL_STATE(1590)] = 60065, + [SMALL_STATE(1591)] = 60078, + [SMALL_STATE(1592)] = 60091, + [SMALL_STATE(1593)] = 60104, + [SMALL_STATE(1594)] = 60117, + [SMALL_STATE(1595)] = 60130, + [SMALL_STATE(1596)] = 60143, + [SMALL_STATE(1597)] = 60156, + [SMALL_STATE(1598)] = 60169, + [SMALL_STATE(1599)] = 60182, + [SMALL_STATE(1600)] = 60195, + [SMALL_STATE(1601)] = 60208, + [SMALL_STATE(1602)] = 60221, + [SMALL_STATE(1603)] = 60234, + [SMALL_STATE(1604)] = 60247, + [SMALL_STATE(1605)] = 60260, + [SMALL_STATE(1606)] = 60269, + [SMALL_STATE(1607)] = 60282, + [SMALL_STATE(1608)] = 60295, + [SMALL_STATE(1609)] = 60308, + [SMALL_STATE(1610)] = 60321, + [SMALL_STATE(1611)] = 60332, + [SMALL_STATE(1612)] = 60345, + [SMALL_STATE(1613)] = 60358, + [SMALL_STATE(1614)] = 60371, + [SMALL_STATE(1615)] = 60384, + [SMALL_STATE(1616)] = 60397, + [SMALL_STATE(1617)] = 60410, + [SMALL_STATE(1618)] = 60423, + [SMALL_STATE(1619)] = 60436, + [SMALL_STATE(1620)] = 60449, + [SMALL_STATE(1621)] = 60462, + [SMALL_STATE(1622)] = 60475, + [SMALL_STATE(1623)] = 60488, + [SMALL_STATE(1624)] = 60501, + [SMALL_STATE(1625)] = 60514, + [SMALL_STATE(1626)] = 60525, + [SMALL_STATE(1627)] = 60534, + [SMALL_STATE(1628)] = 60547, + [SMALL_STATE(1629)] = 60560, + [SMALL_STATE(1630)] = 60573, + [SMALL_STATE(1631)] = 60582, + [SMALL_STATE(1632)] = 60591, + [SMALL_STATE(1633)] = 60604, + [SMALL_STATE(1634)] = 60617, + [SMALL_STATE(1635)] = 60626, + [SMALL_STATE(1636)] = 60639, + [SMALL_STATE(1637)] = 60652, + [SMALL_STATE(1638)] = 60665, + [SMALL_STATE(1639)] = 60678, + [SMALL_STATE(1640)] = 60691, + [SMALL_STATE(1641)] = 60704, + [SMALL_STATE(1642)] = 60717, + [SMALL_STATE(1643)] = 60730, + [SMALL_STATE(1644)] = 60738, + [SMALL_STATE(1645)] = 60746, + [SMALL_STATE(1646)] = 60756, + [SMALL_STATE(1647)] = 60766, + [SMALL_STATE(1648)] = 60774, + [SMALL_STATE(1649)] = 60782, + [SMALL_STATE(1650)] = 60792, + [SMALL_STATE(1651)] = 60802, + [SMALL_STATE(1652)] = 60812, + [SMALL_STATE(1653)] = 60820, + [SMALL_STATE(1654)] = 60830, + [SMALL_STATE(1655)] = 60840, + [SMALL_STATE(1656)] = 60850, + [SMALL_STATE(1657)] = 60860, + [SMALL_STATE(1658)] = 60870, + [SMALL_STATE(1659)] = 60880, + [SMALL_STATE(1660)] = 60890, + [SMALL_STATE(1661)] = 60900, + [SMALL_STATE(1662)] = 60910, + [SMALL_STATE(1663)] = 60920, + [SMALL_STATE(1664)] = 60930, + [SMALL_STATE(1665)] = 60940, + [SMALL_STATE(1666)] = 60950, + [SMALL_STATE(1667)] = 60960, + [SMALL_STATE(1668)] = 60970, + [SMALL_STATE(1669)] = 60980, + [SMALL_STATE(1670)] = 60990, + [SMALL_STATE(1671)] = 61000, + [SMALL_STATE(1672)] = 61010, + [SMALL_STATE(1673)] = 61020, + [SMALL_STATE(1674)] = 61030, + [SMALL_STATE(1675)] = 61040, + [SMALL_STATE(1676)] = 61050, + [SMALL_STATE(1677)] = 61060, + [SMALL_STATE(1678)] = 61070, + [SMALL_STATE(1679)] = 61080, + [SMALL_STATE(1680)] = 61090, + [SMALL_STATE(1681)] = 61100, + [SMALL_STATE(1682)] = 61110, + [SMALL_STATE(1683)] = 61118, + [SMALL_STATE(1684)] = 61128, + [SMALL_STATE(1685)] = 61136, + [SMALL_STATE(1686)] = 61146, + [SMALL_STATE(1687)] = 61156, + [SMALL_STATE(1688)] = 61164, + [SMALL_STATE(1689)] = 61172, + [SMALL_STATE(1690)] = 61182, + [SMALL_STATE(1691)] = 61190, + [SMALL_STATE(1692)] = 61198, + [SMALL_STATE(1693)] = 61208, + [SMALL_STATE(1694)] = 61218, + [SMALL_STATE(1695)] = 61228, + [SMALL_STATE(1696)] = 61236, + [SMALL_STATE(1697)] = 61246, + [SMALL_STATE(1698)] = 61256, + [SMALL_STATE(1699)] = 61266, + [SMALL_STATE(1700)] = 61276, + [SMALL_STATE(1701)] = 61286, + [SMALL_STATE(1702)] = 61296, + [SMALL_STATE(1703)] = 61306, + [SMALL_STATE(1704)] = 61316, + [SMALL_STATE(1705)] = 61324, + [SMALL_STATE(1706)] = 61334, + [SMALL_STATE(1707)] = 61344, + [SMALL_STATE(1708)] = 61352, + [SMALL_STATE(1709)] = 61362, + [SMALL_STATE(1710)] = 61372, + [SMALL_STATE(1711)] = 61382, + [SMALL_STATE(1712)] = 61390, + [SMALL_STATE(1713)] = 61400, + [SMALL_STATE(1714)] = 61410, + [SMALL_STATE(1715)] = 61420, + [SMALL_STATE(1716)] = 61428, + [SMALL_STATE(1717)] = 61438, + [SMALL_STATE(1718)] = 61448, + [SMALL_STATE(1719)] = 61458, + [SMALL_STATE(1720)] = 61468, + [SMALL_STATE(1721)] = 61476, + [SMALL_STATE(1722)] = 61486, + [SMALL_STATE(1723)] = 61496, + [SMALL_STATE(1724)] = 61506, + [SMALL_STATE(1725)] = 61516, + [SMALL_STATE(1726)] = 61524, + [SMALL_STATE(1727)] = 61534, + [SMALL_STATE(1728)] = 61544, + [SMALL_STATE(1729)] = 61554, + [SMALL_STATE(1730)] = 61564, + [SMALL_STATE(1731)] = 61574, + [SMALL_STATE(1732)] = 61581, + [SMALL_STATE(1733)] = 61588, + [SMALL_STATE(1734)] = 61595, + [SMALL_STATE(1735)] = 61602, + [SMALL_STATE(1736)] = 61609, + [SMALL_STATE(1737)] = 61616, + [SMALL_STATE(1738)] = 61623, + [SMALL_STATE(1739)] = 61630, + [SMALL_STATE(1740)] = 61637, + [SMALL_STATE(1741)] = 61644, + [SMALL_STATE(1742)] = 61651, + [SMALL_STATE(1743)] = 61658, + [SMALL_STATE(1744)] = 61665, + [SMALL_STATE(1745)] = 61672, + [SMALL_STATE(1746)] = 61679, + [SMALL_STATE(1747)] = 61686, + [SMALL_STATE(1748)] = 61693, + [SMALL_STATE(1749)] = 61700, + [SMALL_STATE(1750)] = 61707, + [SMALL_STATE(1751)] = 61714, + [SMALL_STATE(1752)] = 61721, + [SMALL_STATE(1753)] = 61728, + [SMALL_STATE(1754)] = 61735, + [SMALL_STATE(1755)] = 61742, + [SMALL_STATE(1756)] = 61749, + [SMALL_STATE(1757)] = 61756, + [SMALL_STATE(1758)] = 61763, + [SMALL_STATE(1759)] = 61770, + [SMALL_STATE(1760)] = 61777, + [SMALL_STATE(1761)] = 61784, + [SMALL_STATE(1762)] = 61791, + [SMALL_STATE(1763)] = 61798, + [SMALL_STATE(1764)] = 61805, + [SMALL_STATE(1765)] = 61812, + [SMALL_STATE(1766)] = 61819, + [SMALL_STATE(1767)] = 61826, + [SMALL_STATE(1768)] = 61833, + [SMALL_STATE(1769)] = 61840, + [SMALL_STATE(1770)] = 61847, + [SMALL_STATE(1771)] = 61854, + [SMALL_STATE(1772)] = 61861, + [SMALL_STATE(1773)] = 61868, + [SMALL_STATE(1774)] = 61875, + [SMALL_STATE(1775)] = 61882, + [SMALL_STATE(1776)] = 61889, + [SMALL_STATE(1777)] = 61896, + [SMALL_STATE(1778)] = 61903, + [SMALL_STATE(1779)] = 61910, + [SMALL_STATE(1780)] = 61917, + [SMALL_STATE(1781)] = 61924, + [SMALL_STATE(1782)] = 61931, + [SMALL_STATE(1783)] = 61938, + [SMALL_STATE(1784)] = 61945, + [SMALL_STATE(1785)] = 61952, + [SMALL_STATE(1786)] = 61959, + [SMALL_STATE(1787)] = 61966, + [SMALL_STATE(1788)] = 61973, + [SMALL_STATE(1789)] = 61980, + [SMALL_STATE(1790)] = 61987, + [SMALL_STATE(1791)] = 61994, + [SMALL_STATE(1792)] = 62001, + [SMALL_STATE(1793)] = 62008, + [SMALL_STATE(1794)] = 62015, + [SMALL_STATE(1795)] = 62022, + [SMALL_STATE(1796)] = 62029, + [SMALL_STATE(1797)] = 62036, + [SMALL_STATE(1798)] = 62043, + [SMALL_STATE(1799)] = 62050, + [SMALL_STATE(1800)] = 62057, + [SMALL_STATE(1801)] = 62064, + [SMALL_STATE(1802)] = 62071, + [SMALL_STATE(1803)] = 62078, + [SMALL_STATE(1804)] = 62085, + [SMALL_STATE(1805)] = 62092, + [SMALL_STATE(1806)] = 62099, + [SMALL_STATE(1807)] = 62106, + [SMALL_STATE(1808)] = 62113, + [SMALL_STATE(1809)] = 62120, + [SMALL_STATE(1810)] = 62127, + [SMALL_STATE(1811)] = 62134, + [SMALL_STATE(1812)] = 62141, + [SMALL_STATE(1813)] = 62148, + [SMALL_STATE(1814)] = 62155, + [SMALL_STATE(1815)] = 62162, + [SMALL_STATE(1816)] = 62169, + [SMALL_STATE(1817)] = 62176, + [SMALL_STATE(1818)] = 62183, + [SMALL_STATE(1819)] = 62190, + [SMALL_STATE(1820)] = 62197, + [SMALL_STATE(1821)] = 62204, + [SMALL_STATE(1822)] = 62211, + [SMALL_STATE(1823)] = 62218, + [SMALL_STATE(1824)] = 62225, + [SMALL_STATE(1825)] = 62232, + [SMALL_STATE(1826)] = 62239, + [SMALL_STATE(1827)] = 62246, + [SMALL_STATE(1828)] = 62253, + [SMALL_STATE(1829)] = 62260, + [SMALL_STATE(1830)] = 62267, + [SMALL_STATE(1831)] = 62274, + [SMALL_STATE(1832)] = 62281, + [SMALL_STATE(1833)] = 62288, + [SMALL_STATE(1834)] = 62295, + [SMALL_STATE(1835)] = 62302, + [SMALL_STATE(1836)] = 62309, + [SMALL_STATE(1837)] = 62316, + [SMALL_STATE(1838)] = 62323, + [SMALL_STATE(1839)] = 62330, + [SMALL_STATE(1840)] = 62337, + [SMALL_STATE(1841)] = 62344, + [SMALL_STATE(1842)] = 62351, + [SMALL_STATE(1843)] = 62358, + [SMALL_STATE(1844)] = 62365, + [SMALL_STATE(1845)] = 62372, + [SMALL_STATE(1846)] = 62379, + [SMALL_STATE(1847)] = 62386, + [SMALL_STATE(1848)] = 62393, + [SMALL_STATE(1849)] = 62400, + [SMALL_STATE(1850)] = 62407, + [SMALL_STATE(1851)] = 62414, + [SMALL_STATE(1852)] = 62421, + [SMALL_STATE(1853)] = 62428, + [SMALL_STATE(1854)] = 62435, + [SMALL_STATE(1855)] = 62442, + [SMALL_STATE(1856)] = 62449, + [SMALL_STATE(1857)] = 62456, + [SMALL_STATE(1858)] = 62463, + [SMALL_STATE(1859)] = 62470, + [SMALL_STATE(1860)] = 62477, + [SMALL_STATE(1861)] = 62484, + [SMALL_STATE(1862)] = 62491, + [SMALL_STATE(1863)] = 62498, + [SMALL_STATE(1864)] = 62505, + [SMALL_STATE(1865)] = 62512, + [SMALL_STATE(1866)] = 62519, + [SMALL_STATE(1867)] = 62526, + [SMALL_STATE(1868)] = 62533, + [SMALL_STATE(1869)] = 62540, + [SMALL_STATE(1870)] = 62547, + [SMALL_STATE(1871)] = 62554, + [SMALL_STATE(1872)] = 62561, + [SMALL_STATE(1873)] = 62568, + [SMALL_STATE(1874)] = 62575, + [SMALL_STATE(1875)] = 62582, + [SMALL_STATE(1876)] = 62589, + [SMALL_STATE(1877)] = 62596, + [SMALL_STATE(1878)] = 62603, + [SMALL_STATE(1879)] = 62610, + [SMALL_STATE(1880)] = 62617, + [SMALL_STATE(1881)] = 62624, + [SMALL_STATE(1882)] = 62631, + [SMALL_STATE(1883)] = 62638, + [SMALL_STATE(1884)] = 62645, + [SMALL_STATE(1885)] = 62652, + [SMALL_STATE(1886)] = 62659, + [SMALL_STATE(1887)] = 62666, + [SMALL_STATE(1888)] = 62673, + [SMALL_STATE(1889)] = 62680, + [SMALL_STATE(1890)] = 62687, + [SMALL_STATE(1891)] = 62694, + [SMALL_STATE(1892)] = 62701, + [SMALL_STATE(1893)] = 62708, + [SMALL_STATE(1894)] = 62715, + [SMALL_STATE(1895)] = 62722, + [SMALL_STATE(1896)] = 62729, + [SMALL_STATE(1897)] = 62736, + [SMALL_STATE(1898)] = 62743, + [SMALL_STATE(1899)] = 62750, + [SMALL_STATE(1900)] = 62757, + [SMALL_STATE(1901)] = 62764, + [SMALL_STATE(1902)] = 62771, + [SMALL_STATE(1903)] = 62778, + [SMALL_STATE(1904)] = 62785, + [SMALL_STATE(1905)] = 62792, + [SMALL_STATE(1906)] = 62799, + [SMALL_STATE(1907)] = 62806, + [SMALL_STATE(1908)] = 62813, + [SMALL_STATE(1909)] = 62820, + [SMALL_STATE(1910)] = 62827, + [SMALL_STATE(1911)] = 62834, + [SMALL_STATE(1912)] = 62841, + [SMALL_STATE(1913)] = 62848, + [SMALL_STATE(1914)] = 62855, + [SMALL_STATE(1915)] = 62862, + [SMALL_STATE(1916)] = 62869, + [SMALL_STATE(1917)] = 62876, + [SMALL_STATE(1918)] = 62883, + [SMALL_STATE(1919)] = 62890, + [SMALL_STATE(1920)] = 62897, + [SMALL_STATE(1921)] = 62904, + [SMALL_STATE(1922)] = 62911, + [SMALL_STATE(1923)] = 62918, + [SMALL_STATE(1924)] = 62925, + [SMALL_STATE(1925)] = 62932, + [SMALL_STATE(1926)] = 62939, + [SMALL_STATE(1927)] = 62946, + [SMALL_STATE(1928)] = 62953, + [SMALL_STATE(1929)] = 62960, + [SMALL_STATE(1930)] = 62967, + [SMALL_STATE(1931)] = 62974, + [SMALL_STATE(1932)] = 62981, + [SMALL_STATE(1933)] = 62988, + [SMALL_STATE(1934)] = 62995, + [SMALL_STATE(1935)] = 63002, + [SMALL_STATE(1936)] = 63009, + [SMALL_STATE(1937)] = 63016, + [SMALL_STATE(1938)] = 63023, + [SMALL_STATE(1939)] = 63030, + [SMALL_STATE(1940)] = 63037, + [SMALL_STATE(1941)] = 63044, + [SMALL_STATE(1942)] = 63051, + [SMALL_STATE(1943)] = 63058, + [SMALL_STATE(1944)] = 63065, + [SMALL_STATE(1945)] = 63072, + [SMALL_STATE(1946)] = 63079, + [SMALL_STATE(1947)] = 63086, + [SMALL_STATE(1948)] = 63093, + [SMALL_STATE(1949)] = 63100, + [SMALL_STATE(1950)] = 63107, + [SMALL_STATE(1951)] = 63114, + [SMALL_STATE(1952)] = 63121, + [SMALL_STATE(1953)] = 63128, + [SMALL_STATE(1954)] = 63135, + [SMALL_STATE(1955)] = 63142, + [SMALL_STATE(1956)] = 63149, + [SMALL_STATE(1957)] = 63156, + [SMALL_STATE(1958)] = 63163, + [SMALL_STATE(1959)] = 63170, + [SMALL_STATE(1960)] = 63177, + [SMALL_STATE(1961)] = 63184, + [SMALL_STATE(1962)] = 63191, + [SMALL_STATE(1963)] = 63198, + [SMALL_STATE(1964)] = 63205, + [SMALL_STATE(1965)] = 63212, + [SMALL_STATE(1966)] = 63219, + [SMALL_STATE(1967)] = 63226, + [SMALL_STATE(1968)] = 63233, + [SMALL_STATE(1969)] = 63240, + [SMALL_STATE(1970)] = 63247, + [SMALL_STATE(1971)] = 63254, + [SMALL_STATE(1972)] = 63261, + [SMALL_STATE(1973)] = 63268, + [SMALL_STATE(1974)] = 63275, + [SMALL_STATE(1975)] = 63282, + [SMALL_STATE(1976)] = 63289, + [SMALL_STATE(1977)] = 63296, + [SMALL_STATE(1978)] = 63303, + [SMALL_STATE(1979)] = 63310, + [SMALL_STATE(1980)] = 63317, }; 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(516), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(514), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1564), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2014), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1363), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2015), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1855), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(483), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(713), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(713), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(714), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(99), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1144), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1254), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1046), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2211), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1907), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2209), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1174), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1080), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1017), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1012), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1109), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1754), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1602), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1656), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1922), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1862), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(672), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2184), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1926), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(446), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2175), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(578), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2104), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2106), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2023), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1856), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2149), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(615), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(749), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2193), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2192), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2191), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1636), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(820), - [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1761), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1697), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(820), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(799), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 41), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 41), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(506), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1560), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2068), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1341), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2043), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1848), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(163), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1154), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1211), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1065), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1863), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1845), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(676), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2035), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1860), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(406), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2218), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(580), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2183), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2172), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2050), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1841), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2140), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(507), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1565), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2086), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1393), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2069), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1903), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(263), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1161), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1232), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1069), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(37), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1846), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1833), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(682), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1973), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1844), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(441), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2221), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(587), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2033), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2032), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2074), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1836), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2020), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(515), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1553), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1953), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1394), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1954), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1897), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(245), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1146), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1216), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1024), - [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(43), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1904), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1923), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(725), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1961), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1910), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(452), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2096), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(577), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1970), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1969), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1956), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1872), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2115), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(516), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1562), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2227), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2223), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1908), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(483), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(713), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(713), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(714), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1151), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1071), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2211), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1907), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2209), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1174), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(46), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1080), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1017), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1012), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1109), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1754), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1602), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1656), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1905), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1901), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(689), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2199), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1900), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(429), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2197), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(576), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2196), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2195), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2194), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(615), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2193), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2192), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2191), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1636), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1761), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1697), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(799), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(510), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(483), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(713), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(713), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(714), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(99), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1144), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1254), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1017), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2211), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1907), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2209), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1080), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1012), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1109), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1754), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1602), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1656), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1922), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1862), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1926), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(446), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2175), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(578), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2104), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2106), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2023), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1856), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2149), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(615), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(749), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2193), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2192), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2191), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1636), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(820), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1761), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1697), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(820), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(799), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(511), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(163), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1154), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1211), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1863), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1845), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1860), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2218), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(580), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2183), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2172), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2050), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1841), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2140), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(249), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1151), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1247), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1905), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1901), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1900), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(429), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2197), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(576), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2196), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2195), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2194), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1927), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1964), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(245), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1216), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(43), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1904), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1923), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1910), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(452), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2096), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(577), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1970), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1969), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1956), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1872), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2115), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(509), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(263), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1161), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1232), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1846), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1833), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1844), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(441), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2221), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(587), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2033), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2032), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2074), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1836), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2020), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(508), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1859), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1870), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2148), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1871), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 26), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 26), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 83), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 83), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 41), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 41), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 70), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 70), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 39), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 39), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(869), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(483), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(713), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(713), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(714), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(249), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1920), - [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1905), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1901), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(689), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2199), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1900), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(429), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2197), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(576), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2196), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2195), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2194), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1927), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1964), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(615), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(749), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2193), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2192), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2191), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1636), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1761), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1697), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(799), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(871), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(245), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(43), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1904), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1923), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(725), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1961), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1910), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(452), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2096), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(577), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1970), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1969), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1956), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1872), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2115), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(865), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1859), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(663), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2016), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1870), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2148), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1871), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(868), - [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(263), - [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(37), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1846), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1833), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(682), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1973), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1844), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(441), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2221), - [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(587), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2033), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2032), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2074), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1836), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2020), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(874), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(99), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1862), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(672), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2184), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1926), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(446), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2175), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(578), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2104), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2106), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2023), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1856), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2149), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(866), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(163), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1863), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1845), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(676), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2035), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1860), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(406), - [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2218), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(580), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2183), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2172), - [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2050), - [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1841), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2140), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1955] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1259), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 41), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1107), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2089), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1388), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1981), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1916), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1012), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1017), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2211), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1865), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2209), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1080), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1109), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1754), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1602), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1656), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 41), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2090), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1350), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2034), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1924), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 100), - [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2042), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1362), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2146), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1892), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2091), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1397), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2060), - [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1930), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 41), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(773), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1697), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1107), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1012), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1017), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2211), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1865), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2209), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1080), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1109), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1754), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1602), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1656), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(846), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1700), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(873), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1012), - [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1017), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2211), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1865), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2209), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1054), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1092), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1259), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1829), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1164), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3143] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1259), - [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2211), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2211), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(2211), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2211), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2211), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 45), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 109), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 108), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 107), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(1012), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1310), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1311), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 43), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3769] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1054), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1054), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1404), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1054), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1054), - [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1429), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1054), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1433), - [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1437), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1441), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1402), - [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1440), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1952), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1907), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2211), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 31), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 11), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 31), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 41), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1803), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1353), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2041), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1908), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 11), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 31), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 41), - [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1593), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 41), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 41), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1803), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 72), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(744), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [4168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2030), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1691), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 47), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1631), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 44), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 93), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 11), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 73), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 11), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 106), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 84), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 102), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1463), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 36), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 36), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1531), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1698), - [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1698), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), - [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1699), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 11), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), SHIFT_REPEAT(1643), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 102), - [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1572), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 96), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 111), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 115), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 84), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1568), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1373), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 84), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 116), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 119), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1237), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 114), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 111), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 121), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2202), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 124), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1830), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 36), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 124), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 84), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 31), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 114), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(538), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 62), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1829), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1510), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(834), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1869), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(560), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 88), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 42), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 70), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 71), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 42), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 92), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 70), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 41), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 42), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 42), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 71), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 42), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 92), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 70), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 70), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 71), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 71), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 70), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 71), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5308] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 92), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 92), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 92), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1182), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(926), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1774), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(410), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1333), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(926), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1774), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 100), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 100), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 111), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 111), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 39), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 39), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 38), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 38), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 97), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 97), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 94), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 94), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(733), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(385), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(545), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(545), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(547), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(227), + [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1702), + [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1677), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1667), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(530), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1757), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1675), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(351), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1978), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(465), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1828), + [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1817), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1913), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1663), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1800), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(562), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(561), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1950), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1947), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1946), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1403), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(672), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1625), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1471), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(672), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(673), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(731), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(177), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(25), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1710), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1651), + [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(534), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1783), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1713), + [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(325), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1959), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(475), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1953), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1952), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1951), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1655), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1862), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(725), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(110), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(32), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1701), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1676), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(531), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1829), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1698), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(328), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1975), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(479), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1781), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1777), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1886), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1671), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1762), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(720), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(164), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1649), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(556), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1961), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1654), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1958), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1696), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1825), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(727), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(30), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1728), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1700), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(514), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1730), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(332), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1940), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(458), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1772), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1774), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1805), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1680), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1720] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(970), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(363), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1933), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1907), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(721), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(970), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(751), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1974), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1974), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1974), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1974), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1974), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1638), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(923), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [2913] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(970), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(999), + [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1124), + [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(721), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3309] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(721), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1122), + [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1114), + [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1123), + [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1105), + [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1127), + [3334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(721), + [3337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(721), + [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(721), + [3343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1126), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1918), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), + [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1976), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1338), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1243), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), + [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), + [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1359), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1368), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1289), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1112), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), + [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1955), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4964] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), }; #ifdef __cplusplus extern "C" { #endif -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_c(void) { +TS_PUBLIC const TSLanguage *tree_sitter_c(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h new file mode 100644 index 00000000..1f4466d7 --- /dev/null +++ b/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h new file mode 100644 index 00000000..15a3b233 --- /dev/null +++ b/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17b4fde9..17f0e94b 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -86,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +130,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index f8e9f2f9..07bb50c0 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -629,6 +629,38 @@ int static inline do_stuff(int arg1) { (return_statement (number_literal))))) +================================================================================ +Function definitions with macro attributes +================================================================================ + +void * do_stuff(int arg1) + SOME_ATTR + SOME_ATTR(1) +{ + return 5; +} + +-------------------------------------------------------------------------------- + +(translation_unit + (function_definition + type: (primitive_type) + declarator: (pointer_declarator + declarator: (function_declarator + declarator: (identifier) + parameters: (parameter_list + (parameter_declaration + type: (primitive_type) + declarator: (identifier))) + (identifier) + (call_expression + function: (identifier) + arguments: (argument_list + (number_literal))))) + body: (compound_statement + (return_statement + (number_literal))))) + ================================================================================ Linkage specifications ================================================================================ @@ -688,6 +720,8 @@ restrict int y = 6; volatile int z = 7; constexpr int a = 8; __thread int c = 9; +alignas(16) int i; +_Alignas(int) int j; noreturn void b() {} __extension__ extern int ffsll (long long int __ll) __attribute__ ((__nothrow__ )) __attribute__ ((__const__)); @@ -727,6 +761,19 @@ noreturn void b() {} (init_declarator (identifier) (number_literal))) + (declaration + (type_qualifier + (alignas_qualifier + (number_literal))) + (primitive_type) + (identifier)) + (declaration + (type_qualifier + (alignas_qualifier + (type_descriptor + (primitive_type)))) + (primitive_type) + (identifier)) (function_definition (type_qualifier) (primitive_type) @@ -795,6 +842,9 @@ extern int strerror_r(int __errnum, char *__buf, "__xpg_strerror_r") __attribute__((__nothrow__)) __attribute__((__nonnull__(2))); +extern int _IO_vfprintf (_IO_FILE *__restrict, const char *__restrict, + __gnuc_va_list); + int f([[a::b(c), d]] int x) {} [[gnu::always_inline]] [[gnu::hot]] [[gnu::const]] [[nodiscard]] @@ -923,6 +973,25 @@ struct __attribute__((__packed__)) foo_t { (identifier) (argument_list (number_literal))))))) + (declaration + (storage_class_specifier) + (primitive_type) + (function_declarator + (identifier) + (parameter_list + (parameter_declaration + (type_identifier) + (abstract_pointer_declarator + (ms_pointer_modifier + (ms_restrict_modifier)))) + (parameter_declaration + (type_qualifier) + (primitive_type) + (abstract_pointer_declarator + (ms_pointer_modifier + (ms_restrict_modifier)))) + (parameter_declaration + (type_identifier))))) (function_definition (primitive_type) (function_declarator @@ -1085,3 +1154,69 @@ struct __attribute__((__packed__)) foo_t { (field_declaration (primitive_type) (field_identifier))))) + +================================================================================ +More Assembly +================================================================================ + +int main() { + int var; + __asm__( + "nop;" + : [var] "=r"(var) + : + : "eax", "ra" "x" + ); +} + +-------------------------------------------------------------------------------- + +(translation_unit + (function_definition + (primitive_type) + (function_declarator + (identifier) + (parameter_list)) + (compound_statement + (declaration + (primitive_type) + (identifier)) + (expression_statement + (gnu_asm_expression + (string_literal + (string_content)) + (gnu_asm_output_operand_list + (gnu_asm_output_operand + (identifier) + (string_literal + (string_content)) + (identifier))) + (gnu_asm_input_operand_list) + (gnu_asm_clobber_list + (string_literal + (string_content)) + (concatenated_string + (string_literal + (string_content)) + (string_literal + (string_content))))))))) + +================================================================================ +Static in Array Declarations +================================================================================ + +void foo (int a[static 10]); + +-------------------------------------------------------------------------------- + +(translation_unit + (declaration + (primitive_type) + (function_declarator + (identifier) + (parameter_list + (parameter_declaration + (primitive_type) + (array_declarator + (identifier) + (number_literal))))))) diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index bc87875d..e2e05e73 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -719,7 +719,7 @@ int main() { (sizeof_expression (parenthesized_expression (number_literal))) - (number_literal))) + (number_literal))) (expression_statement (sizeof_expression (parenthesized_expression @@ -818,7 +818,7 @@ int main() { (offsetof_expression (type_descriptor (type_identifier)) - (field_identifier))) + (field_identifier))) (expression_statement (binary_expression (offsetof_expression @@ -1322,6 +1322,7 @@ Ternary void f() { 0 ? 1 : 2; a = 0 ? 1 : 2; + a = val ? b = 3, 1 : 0; } -------------------------------------------------------------------------------- @@ -1344,4 +1345,84 @@ void f() { (conditional_expression (number_literal) (number_literal) + (number_literal)))) + (expression_statement + (assignment_expression + (identifier) + (conditional_expression + (identifier) + (comma_expression + (assignment_expression + (identifier) + (number_literal)) + (number_literal)) (number_literal))))))) + +================================================================================ +Concatenated strings +================================================================================ + +foo("hello" PRI " world"); +foo("hello" PRI); +foo("hello" " world"); +foo("hello" " world " PRI); +foo(PRI "hello" PRI); +foo(PRI "hello"); + +-------------------------------------------------------------------------------- + +(translation_unit + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (string_literal + (string_content)) + (identifier) + (string_literal + (string_content)))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (string_literal + (string_content)) + (identifier))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (string_literal + (string_content)) + (string_literal + (string_content)))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (string_literal + (string_content)) + (string_literal + (string_content)) + (identifier))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (identifier) + (string_literal + (string_content)) + (identifier))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (identifier) + (string_literal + (string_content))))))) diff --git a/test/corpus/microsoft.txt b/test/corpus/microsoft.txt index 93c0ae8a..0a85aec1 100644 --- a/test/corpus/microsoft.txt +++ b/test/corpus/microsoft.txt @@ -166,6 +166,16 @@ __fastcall void mymethod(){ return; } +void __stdcall f() { } + +void (__stdcall g)() { } + +void __stdcall h(); + +void (__stdcall j()); + +typedef void(__stdcall *fp)(); + --- (translation_unit @@ -184,8 +194,43 @@ __fastcall void mymethod(){ declarator: (identifier) parameters: (parameter_list)) body: (compound_statement - (return_statement)))) - + (return_statement))) + (function_definition + type: (primitive_type) + (ms_call_modifier) + declarator: (function_declarator + declarator: (identifier) + parameters: (parameter_list)) + body: (compound_statement)) + (function_definition + type: (primitive_type) + declarator: (function_declarator + declarator: (parenthesized_declarator + (ms_call_modifier) + (identifier)) + parameters: (parameter_list)) + body: (compound_statement)) + (declaration + type: (primitive_type) + declarator: (ms_call_modifier) + declarator: (function_declarator + declarator: (identifier) + parameters: (parameter_list))) + (declaration + type: (primitive_type) + declarator: (parenthesized_declarator + (ms_call_modifier) + (function_declarator + declarator: (identifier) + parameters: (parameter_list)))) + (type_definition + type: (primitive_type) + declarator: (function_declarator + declarator: (parenthesized_declarator + (ms_call_modifier) + (pointer_declarator + declarator: (type_identifier))) + parameters: (parameter_list)))) ================================ SEH exception handling diff --git a/test/corpus/preprocessor.txt b/test/corpus/preprocessor.txt index 24e53816..8ae93193 100644 --- a/test/corpus/preprocessor.txt +++ b/test/corpus/preprocessor.txt @@ -225,6 +225,54 @@ int b; (primitive_type) (identifier)))))) +================================================================================ +Mixing #elif and #elifdef +================================================================================ + +#ifndef DEFINE1 +int i; +#elif defined(DEFINE2) +int j; +#endif + +#if defined DEFINE3 +int a; +#elifdef DEFINE4 +int b; +#else +int c; +#endif + +-------------------------------------------------------------------------------- + +(translation_unit + (preproc_ifdef + name: (identifier) + (declaration + type: (primitive_type) + declarator: (identifier)) + alternative: (preproc_elif + condition: (preproc_defined + (identifier)) + (declaration + type: (primitive_type) + declarator: (identifier)))) + (preproc_if + condition: (preproc_defined + (identifier)) + (declaration + type: (primitive_type) + declarator: (identifier)) + alternative: (preproc_elifdef + name: (identifier) + (declaration + type: (primitive_type) + declarator: (identifier)) + alternative: (preproc_else + (declaration + type: (primitive_type) + declarator: (identifier)))))) + ================================================================================ General if blocks ================================================================================